QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#77809 | #5504. Flower Garden | chenshi | Compile Error | / | / | C++ | 97b | 2023-02-15 17:21:40 | 2023-02-15 17:21:42 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-02-15 17:21:42]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2023-02-15 17:21:40]
- 提交
answer
#include<cstdio>
using namespace std;
int main(){
printf("TAK\nRFF\nTAK\nRFF")
return 0;
}
Details
answer.code: In function ‘int main()’: answer.code:4:37: error: expected ‘;’ before ‘return’ 4 | printf("TAK\nRFF\nTAK\nRFF") | ^ | ; 5 | return 0; | ~~~~~~