| Problem | globalwarming |
|---|---|
| User | lexuantung71 |
| Submission Time | 2026-07-16 21:15:39 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
globalwarming.cpp: In function ‘int main()’:
globalwarming.cpp:14:5: error: ‘ios_base’ has not been declared
14 | ios_base::sync_with_stdio(false); cin.tie(nullptr);
| ^~~~~~~~
globalwarming.cpp:14:39: error: ‘cin’ was not declared in this scope
14 | ios_base::sync_with_stdio(false); cin.tie(nullptr);
| ^~~
globalwarming.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 |
globalwarming.cpp:16:5: error: ‘vector’ was not declared in this scope
16 | vector<pll> arr;
| ^~~~~~
globalwarming.cpp:1:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
+++ |+#include <vector>
1 |
globalwarming.cpp:5:13: error: ‘pair’ was not declared in this scope
5 | #define pll pair<ll,ll>