제출 #641062

#제출 시각아이디문제언어결과실행 시간메모리
641062Benmath말 (IOI15_horses)C++14
17 / 100
26 ms8140 KiB
#include <bits/stdc++.h>
#include<horses.h>
using namespace std;
int init(int N, int X[], int Y[]) {
	int pro=1;
	int maxi=0;
	for(int i=0;i<N;i++){
        pro=pro*X[i];
        int pro1=pro*Y[i];
        if(pro1>maxi){
            maxi=pro1;
        }
	}
return maxi;
}
int updateX(int pos, int val) {	
	return 0;
}

int updateY(int pos, int val) {
	return 0;
}
/*
int main()
{
    cout << "Hello world!" << endl;
    return 0;
}
*/

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

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