Submission #206862

#TimeUsernameProblemLanguageResultExecution timeMemory
206862oscarsierra12말 (IOI15_horses)C++14
17 / 100
33 ms8184 KiB
#include "horses.h"
#include <bits/stdc++.h>

using namespace std ;

int init(int N, int X[], int Y[]) {
    int ans = 0 ;
    int h = 1 ;
    for ( int i = 0 ; i < N ; ++i ) {
        h *= X[i] ;
        ans = max ( ans, h*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:16:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val) {
                 ^~~
horses.cpp:16:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val) {
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:20:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) {
                 ^~~
horses.cpp:20:26: warning: unused parameter 'val' [-Wunused-parameter]
 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...