QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
詳細信息
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