Problem | dyingpolynomial |
---|---|
User | YellowPurpleDragon |
Submission Time | 2025-02-15 10:29:54 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
dyingpolynomial.cpp:4:9: error: ‘__uint128’ does not name a type; did you mean ‘__rintf128’?
4 | typedef __uint128 ll;
| ^~~~~~~~~
| __rintf128
dyingpolynomial.cpp: In function ‘int main()’:
dyingpolynomial.cpp:16:2: error: ‘ll’ was not declared in this scope; did you mean ‘ul’?
16 | ll a; cin >> a;
| ^~
| ul
dyingpolynomial.cpp:16:15: error: ‘a’ was not declared in this scope
16 | ll a; cin >> a;
| ^
dyingpolynomial.cpp:17:9: error: expected ‘;’ before ‘i’
17 | for (ll i=0; i<a; i++) {
| ^~
| ;
dyingpolynomial.cpp:17:15: error: ‘i’ was not declared in this scope
17 | for (ll i=0; i<a; i++) {
| ^
dyingpolynomial.cpp:18:5: error: expected ‘;’ before ‘b’
18 | ll b, c, d, e; cin >> b >> c >> d >> e;
| ^~
| ;
dyingpolynomial.cpp