QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#631482 | #6604. Kobolds and Catacombs | MaMengQi | Compile Error | / | / | C++23 | 316b | 2024-10-12 06:41:15 | 2024-10-12 06:41:16 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:5:11: error: expected ‘;’ before ‘vector’ 5 | cin>>n | ^ | ; 6 | vector<int> v; | ~~~~~~ answer.code:10:9: error: ‘v’ was not declared in this scope 10 | v.push_back(x); | ^ answer.code:12:20: error: ‘v’ was not declared in this scope 12 | for(int i=0;i<(v.size()-1);i++){ | ^ answer.code:17:5: error: ‘v’ was not declared in this scope 17 | v.clear(); | ^