제출 #1008729

#제출 시각아이디문제언어결과실행 시간메모리
1008729Rolo678Labels (NOI20_labels)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >>n; vector<int>d(n); for(int i = 1;i<n;i++) { cin >>d[i]; } if(abs(d[1]) != 2*n-2) cout<<-1<<'\n'; else if (d[i] == -2*n + 2) cout<< n-1 << ' '<< -n+1 <<'\n'; else if (d[i] == 2*n-2) cout<< -n+1 << ' '<< n-1 <<'\n'; }

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

Labels.cpp: In function 'int main()':
Labels.cpp:14:14: error: 'i' was not declared in this scope
   14 |   else if (d[i] == -2*n + 2) cout<< n-1 << ' '<< -n+1 <<'\n';
      |              ^