| Problem | sos |
|---|---|
| User | foodaholic |
| Submission Time | 2025-03-12 11:16:07 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
sos.cpp: In function ‘int main()’:
sos.cpp:7:5: error: ‘ios_base’ has not been declared
7 | ios_base::sync_with_stdio(false);
| ^~~~~~~~
sos.cpp:8:5: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
8 | cin.tie(0);
| ^~~
| std::cin
In file included from sos.cpp:2:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
sos.cpp:9:5: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
9 | cout.tie(0);
| ^~~~
| std::cout
In file included from sos.cpp:2:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~
sos.cpp:14:5: error: ‘vector’ was not declared in this scope
14 | vector<long long> origin(n);