QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#321161 | #7762. 数据库 | alch07# | Compile Error | / | / | C++20 | 870b | 2024-02-04 05:42:32 | 2024-07-04 03:22:37 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:34:9: error: ‘ll’ was not declared in this scope; did you mean ‘l’? 34 | ll sum = 0; | ^~ | l answer.code:37:17: error: ‘sum’ was not declared in this scope 37 | sum += w[k[i]-1]; | ^~~ answer.code:40:17: error: ‘sum’ was not declared in this scope 40 | cout << sum << endl; | ^~~ answer.code:42:33: error: expected ‘;’ before ‘}’ token 42 | cout << "Eat mor chickn" | ^ | ; 43 | } | ~