QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#597686 | #9176. Non-Interactive Nim | Soohti | Compile Error | / | / | C++14 | 1.1kb | 2024-09-28 18:26:18 | 2024-09-28 18:26:19 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:28:9: error: ‘vector’ was not declared in this scope 28 | vector<pair<int, long long> > ans; | ^~~~~~ answer.code:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’? 2 | #include <map> +++ |+#include <vector> 3 | const int N=1e5+10; answer.code:28:37: error: expected primary-expression before ‘>’ token 28 | vector<pair<int, long long> > ans; | ^ answer.code:28:39: error: ‘ans’ was not declared in this scope; did you mean ‘abs’? 28 | vector<pair<int, long long> > ans; | ^~~ | abs