제출 #238828

#제출 시각아이디문제언어결과실행 시간메모리
238828Ruxandra985말 (IOI15_horses)C++14
17 / 100
32 ms8312 KiB
#include <bits/stdc++.h> #include "horses.h" using namespace std; int init(int n, int x[], int y[]){ int i , maxi = 0 , prod = 1; for (i = 0 ; i < n ; i++){ prod *= x[i]; maxi = max(maxi , prod * y[i]); } return maxi; } 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: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:19:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val){
                 ^~~
horses.cpp:19: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...