QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#60730 | #5006. Heximal | Jes | Compile Error | / | / | C++14 | 66b | 2022-11-06 21:46:23 | 2022-11-06 21:46:24 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2022-11-06 21:46:24]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2022-11-06 21:46:23]
- 提交
answer
s=int(input ())
a=1
while (s>=6):
a+=1
s/=6
print (a)
详细
answer.code:1:1: error: ‘s’ does not name a type 1 | s=int(input ()) | ^