QOJ.ac
QOJ
The 2nd Universal Cup Finals is coming! Check out our event page, schedule, and competition rules!
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#178533 | #7123. Robot Contest | triple321# | Compile Error | / | / | C++20 | 707b | 2023-09-14 03:02:19 | 2024-04-21 00:24:52 |
Judging History
This is a historical verdict posted at 2024-04-21 00:24:52.
- [2024-04-28 07:42:09]
- 管理员手动重测本题所有提交记录
- Verdict: Compile Error
- Time: 0ms
- Memory: 0kb
- [2024-04-21 00:24:52]
- 管理员手动重测本题所有提交记录
- Verdict: Compile Error
- Time: 0ms
- Memory: 0kb
- [2023-09-14 03:02:19]
- Judged
- Verdict: Compile Error
- Time: 0ms
- Memory: 0kb
- [2023-09-14 03:02:19]
- Submitted
answer
#include "robot.h"
#include <bits/stdc++.h>
#include "grader.cpp"
using namespace std;
void program_pulibot()
{
set_instruction({0, -2, 0, 0, -2}, 1, 'E');
set_instruction({0, 0, 0, 0, -2}, 1, 'E');
set_instruction({0, 0, 0, -2, -2}, 1, 'S');
set_instruction({0, 0, 0, -2, 0}, 1, 'S');
set_instruction({0, 0, -2, -2, 0}, 1, 'T');
set_instruction({0, 1, 0, 0, -2}, 1, 'E');
set_instruction({0, 1, 0, -2, -2}, 1, 'S');
set_instruction({0, 1, 0, -2, 0}, 1, 'S');
set_instruction({0, 1, -2, -2, 0}, 1, 'T');
set_instruction({0, 0, 0, -2, 1}, 1, 'S');
set_instruction({0, 0, -2, -2, 1}, 1, 'T');
set_instruction({0, 1, 0, -2, 1}, 1, 'S');
}
Details
answer.code:3:10: fatal error: grader.cpp: No such file or directory 3 | #include "grader.cpp" | ^~~~~~~~~~~~ compilation terminated.