| Problem | badcontest |
|---|---|
| User | Yichen |
| Submission Time | 2025-12-29 12:05:48 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
badcontest.cpp: In function ‘int main()’:
badcontest.cpp:9:12: error: expected primary-expression before ‘<’ token
9 | #define vi <vector<int>>
| ^
badcontest.cpp:19:2: note: in expansion of macro ‘vi’
19 | vi v(n)
| ^~
badcontest.cpp:9:23: error: expected primary-expression before ‘>’ token
9 | #define vi <vector<int>>
| ^~
badcontest.cpp:19:2: note: in expansion of macro ‘vi’
19 | vi v(n)
| ^~
badcontest.cpp:19:5: error: ‘v’ was not declared in this scope
19 | vi v(n)
| ^
badcontest.cpp:3:29: error: ‘i’ was not declared in this scope
3 | #define fori(x) for(int i=0;i<x;i++)
| ^
badcontest.cpp:20:2: note: in expansion of macro ‘fori’
20 | fori(n) {
| ^~~~