제출 #103178

#제출 시각아이디문제언어결과실행 시간메모리
103178turbat커다란 상품 (IOI17_prize)C++14
컴파일 에러
0 ms0 KiB
#include "prize.h" int find_best(int n) { for(int i = 0; i < n; i++) std::vector<int> res = ask(i); if(res[0] + res[1] == 0) return i; return 0; }

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

prize.cpp: In function 'int find_best(int)':
prize.cpp:6:12: error: 'res' was not declared in this scope
         if(res[0] + res[1] == 0)
            ^~~
prize.cpp:7:17: error: 'i' was not declared in this scope
          return i;
                 ^