QOJ.ac
QOJ
The 2nd Universal Cup Finals is coming! Check out our event page, schedule, and competition rules!
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#647624 | #8110. Addition | rotcar07 | Compile Error | / | / | C++20 | 210b | 2024-10-17 14:59:26 | 2024-10-17 14:59:30 |
Judging History
This is the latest submission verdict.
- [2024-10-17 14:59:30]
- Judged
- Verdict: Compile Error
- Time: 0ms
- Memory: 0kb
- [2024-10-17 14:59:26]
- Submitted
answer
print('''22
^010 1^00
^000 0^00
^100 0^10
^110 1^10
^011 1^01
^001 0^01
^101 0^11
^111 1^11
^00 ^0
^01 ^1
^10 ^1
^11 #^0
0# 1
1# #0
+# +^1
0+ +^0
1+ +^1
+^ -^
-^0 0-
-^1 1-
1- 1
0- 0
''')
詳細信息
answer.code:1:7: error: empty character constant 1 | print('''22 | ^~ answer.code:1:9: warning: missing terminating ' character 1 | print('''22 | ^ answer.code:1:9: error: missing terminating ' character 1 | print('''22 | ^~~ answer.code:13:5: error: stray ‘#’ in program 13 | ^11 #^0 | ^ answer.code:14:2: error: stray ‘#’ in program 14 | 0# 1 | ^ answer.code:15:2: error: stray ‘#’ in program 15 | 1# #0 | ^ answer.code:15:4: error: stray ‘#’ in program 15 | 1# #0 | ^ answer.code:16:2: error: stray ‘#’ in program 16 | +# +^1 | ^ answer.code:24:1: error: empty character constant 24 | ''') | ^~ answer.code:24:3: warning: missing terminating ' character 24 | ''') | ^ answer.code:24:3: error: missing terminating ' character 24 | ''') | ^~ answer.code:1:6: error: expected constructor, destructor, or type conversion before ‘(’ token 1 | print('''22 | ^