Submission #439076

#TimeUsernameProblemLanguageResultExecution timeMemory
439076MilosMilutinovicHorses (IOI15_horses)C++14
17 / 100
22 ms10488 KiB
#include <bits/stdc++.h>
#define mod 1000000007
using namespace std;
int init(int N, int X[], int Y[])
{
    long long p=1,ans=0;
    for(int i=0;i<N;i++)
    {
        p*=X[i];
        p%=mod;
        ans=max(ans,p*Y[i]);
    }
    return ans;
}
int updateX(int pos, int val)
{

}
int updateY(int pos, int val)
{

}

Compilation message (stderr)

horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:13:12: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   13 |     return ans;
      |            ^~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:18:1: warning: no return statement in function returning non-void [-Wreturn-type]
   18 | }
      | ^
horses.cpp:15:17: warning: unused parameter 'pos' [-Wunused-parameter]
   15 | int updateX(int pos, int val)
      |             ~~~~^~~
horses.cpp:15:26: warning: unused parameter 'val' [-Wunused-parameter]
   15 | int updateX(int pos, int val)
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:22:1: warning: no return statement in function returning non-void [-Wreturn-type]
   22 | }
      | ^
horses.cpp:19:17: warning: unused parameter 'pos' [-Wunused-parameter]
   19 | int updateY(int pos, int val)
      |             ~~~~^~~
horses.cpp:19:26: warning: unused parameter 'val' [-Wunused-parameter]
   19 | 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...