QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#219973 | #3899. BSUIR Open X | HuangHanSheng | Compile Error | / | / | C++98 | 975b | 2023-10-19 20:19:28 | 2023-10-19 20:19:28 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
In file included from /usr/include/c++/11/unordered_set:35, from answer.code:6: /usr/include/c++/11/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options. 32 | #error This file requires compiler and library support \ | ^~~~~ answer.code: In function ‘int countIdealCompetitions(std::vector<std::__cxx11::basic_string<char> >&)’: answer.code:12:5: error: ‘unordered_set’ was not declared in this scope 12 | unordered_set<string> uniqueSets; | ^~~~~~~~~~~~~ answer.code:12:5: note: ‘std::unordered_set’ is only available from C++11 onwards answer.code:12:25: error: expected primary-expression before ‘>’ token 12 | unordered_set<string> uniqueSets; | ^ answer.code:12:27: error: ‘uniqueSets’ was not declared in this scope 12 | unordered_set<string> uniqueSets; | ^~~~~~~~~~