답안 #800779

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
800779 2023-08-01T20:38:47 Z Liudas 말 (IOI15_horses) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include "horses.h"
using namespace std;
int init(int N, vector<int> X, vector<int> Y){
    int ans = 0;
    for(int i = 0; i < N; i ++){
        if(i){
            X[i] *= X[i-1];
        }
        ans = max(ans, X[i]*Y[i]);
    }
    return i;
}
int updateX(int pos, int val){
    return 0;
}
int updateY(int pos, int val){
    return 0;
}

Compilation message

horses.cpp: In function 'int init(int, std::vector<int>, std::vector<int>)':
horses.cpp:12:12: error: 'i' was not declared in this scope
   12 |     return i;
      |            ^
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:14:17: warning: unused parameter 'pos' [-Wunused-parameter]
   14 | int updateX(int pos, int val){
      |             ~~~~^~~
horses.cpp:14:26: warning: unused parameter 'val' [-Wunused-parameter]
   14 | int updateX(int pos, int val){
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:17:17: warning: unused parameter 'pos' [-Wunused-parameter]
   17 | int updateY(int pos, int val){
      |             ~~~~^~~
horses.cpp:17:26: warning: unused parameter 'val' [-Wunused-parameter]
   17 | int updateY(int pos, int val){
      |                      ~~~~^~~