| Problem | hungrycats2 |
|---|---|
| User | chatdanai |
| Submission Time | 2026-04-16 16:19:41 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
hungrycats2.cpp: In function ‘int main()’:
hungrycats2.cpp:8:20: error: expected ‘;’ before ‘vector’
8 | int n; cin >> n
| ^
| ;
9 | vector<int> h(n);
| ~~~~~~
hungrycats2.cpp:10:31: error: ‘h’ was not declared in this scope
10 | for (int i=0;i<n;i++) cin >> h[i];
| ^
hungrycats2.cpp:12:7: error: ‘h’ was not declared in this scope
12 | if (h[0]==h[1]) cout << "NO";
| ^