Submission #432466

#TimeUsernameProblemLanguageResultExecution timeMemory
432466daniel920712Horses (IOI15_horses)C++14
17 / 100
18 ms12108 KiB
#include "horses.h"
#include <iostream>
using namespace std;
int XX[100005];
int YY[100005];
int init(int N, int X[], int Y[])
{
    int ans=0,t=1,i;
    for(i=0;i<N;i++)
    {
        XX[i]=X[i];
        YY[i]=Y[i];
        t*=X[i];
        ans=max(ans,t*Y[i]);
    }
	return ans;
}

int updateX(int pos, int val) {
	return 0;
}

int updateY(int pos, int val) {
	return 0;
}

Compilation message (stderr)

horses.cpp: In function 'int updateX(int, int)':
horses.cpp:19:17: warning: unused parameter 'pos' [-Wunused-parameter]
   19 | int updateX(int pos, int val) {
      |             ~~~~^~~
horses.cpp:19:26: warning: unused parameter 'val' [-Wunused-parameter]
   19 | int updateX(int pos, int val) {
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:23:17: warning: unused parameter 'pos' [-Wunused-parameter]
   23 | int updateY(int pos, int val) {
      |             ~~~~^~~
horses.cpp:23:26: warning: unused parameter 'val' [-Wunused-parameter]
   23 | int updateY(int pos, int val) {
      |                      ~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...