QOJ.ac
QOJ
The 2nd Universal Cup Finals is coming! Check out our event page, schedule, and competition rules!
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#107267 | #5103. Fair Division | ballance | Compile Error | / | / | C++23 | 52b | 2023-05-20 17:49:23 | 2023-05-20 17:49:26 |
Judging History
This is the latest submission verdict.
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-05-20 17:49:26]
- Judged
- Verdict: Compile Error
- Time: 0ms
- Memory: 0kb
- [2023-05-20 17:49:23]
- Submitted
answer
import std;
int main()
{
std::print("HELLO");
}
詳細信息
answer.code:1:1: error: ‘import’ does not name a type 1 | import std; | ^~~~~~ answer.code:1:1: note: C++20 ‘import’ only available with ‘-fmodules-ts’, which is not yet enabled with ‘-std=c++20’ answer.code: In function ‘int main()’: answer.code:4:6: error: ‘print’ is not a member of ‘std’ 4 | std::print("HELLO"); | ^~~~~