| Problem | flamethrower_ex |
|---|---|
| User | n1k1trh |
| Submission Time | 2025-12-03 17:05:58 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
flamethrower_ex.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
1 | #include bits/stdc++.h
| ^~~~
flamethrower_ex.cpp: In function ‘long long int solve()’:
flamethrower_ex.cpp:15:13: error: ‘cin’ was not declared in this scope
15 | int n,k;cin>>n>>k;
| ^~~
flamethrower_ex.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #include bits/stdc++.h
flamethrower_ex.cpp:18:5: error: ‘deque’ was not declared in this scope
18 | deque<int> dq; int ans = -inf; dq.push_back(0);
| ^~~~~
flamethrower_ex.cpp:1:1: note: ‘std::deque’ is defined in header ‘<deque>’; did you forget to ‘#include <deque>’?
+++ |+#include <deque>
1 | #include bits/stdc++.h
flamethrower_ex.cpp:3:13: error: expected primary-expression before ‘long’
3