제출 #234183

#제출 시각아이디문제언어결과실행 시간메모리
234183Amy313말 (IOI15_horses)C++14
17 / 100
33 ms7160 KiB
#include "horses.h"
#include <algorithm>
using namespace std;
int init(int N, int X[], int Y[]) {
	int V[N];
	V[0] = X[0];
	for(int i=1; i<N; i++){
		V[i] = V[i-1]*X[i];
	}
	int mx =0;
	for(int i=0; i<N; i++)
	{
		mx = max(mx, V[i]*Y[i]);
	}
	return mx;
}

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

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

컴파일 시 표준 에러 (stderr) 메시지

horses.cpp: In function 'int updateX(int, int)':
horses.cpp:18:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val) { 
                 ^~~
horses.cpp:18:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val) { 
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:22:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) {
                 ^~~
horses.cpp:22: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...