Problem | eescapism |
---|---|
User | newperson |
Submission Time | 2025-04-08 17:03:57 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
eescapism.cpp:4:1: error: ‘typdef’ does not name a type; did you mean ‘typeof’?
4 | typdef long long ll;
| ^~~~~~
| typeof
eescapism.cpp: In function ‘int main()’:
eescapism.cpp:8:2: error: ‘ll’ was not declared in this scope
8 | ll n; cin >> n;
| ^~
eescapism.cpp:8:15: error: ‘n’ was not declared in this scope; did you mean ‘yn’?
8 | ll n; cin >> n;
| ^
| yn
eescapism.cpp:9:11: error: template argument 2 is invalid
9 | vector<ll> v(n);
| ^
eescapism.cpp:10:9: error: expected ‘;’ before ‘i’
10 | for (ll i=0;i<n;i++) cin >> v[i];
| ^~
| ;
eescapism.cpp:10:14: error: ‘i’ was not declared in this scope
10 | for (ll i=0;i<n;i++) cin >> v[i];
| ^
eescapism.cpp:12:4: error: expected ‘;’ before ‘s’
12 | ll s=0, smol=1e18;
| ^~<