| Problem | waterbomb |
|---|---|
| User | rasquait |
| Submission Time | 2025-11-30 17:33:15 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
waterbomb.cpp: In function ‘int main()’:
waterbomb.cpp:17:14: error: expected ‘;’ before ‘for’
17 | T = t[0] - d
| ^
| ;
18 |
19 | for (int i = 0; i < N; ++i)cin >> t[i];
| ~~~
waterbomb.cpp:19:18: error: ‘i’ was not declared in this scope
19 | for (int i = 0; i < N; ++i)cin >> t[i];
| ^
waterbomb.cpp:22:34: error: expected ‘)’ before ‘if’
22 | min(T, t[i] - (1LL * d * i + 1)
| ~ ^
| )
23 | if (T < 0){T = -1;
| ~~