QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#483334 | #7112. XOR Clique | HuangHanSheng | Compile Error | / | / | C++20 | 270b | 2024-07-18 15:52:41 | 2024-07-18 15:52:43 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code:1:5: error: ‘unordered_map’ does not name a type 1 | unordered_map<int, int> count_map; | ^~~~~~~~~~~~~ answer.code:4:5: error: expected unqualified-id before ‘for’ 4 | for (int i = 1; i <= n; i++) { | ^~~ answer.code:4:21: error: ‘i’ does not name a type 4 | for (int i = 1; i <= n; i++) { | ^ answer.code:4:29: error: ‘i’ does not name a type 4 | for (int i = 1; i <= n; i++) { | ^ answer.code:9:5: error: expected unqualified-id before ‘for’ 9 | for (const auto& pair : count_map) { | ^~~