QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#494341 | #5006. Heximal | ssmy | Compile Error | / | / | C++20 | 105b | 2024-07-27 15:19:37 | 2024-07-27 15:19:37 |
Judging History
answer
n = int(input())
cnt = 0
if n == 0:
print(1)
while n != 0:
n //= 6
cnt += 1
print(cnt)
詳細信息
answer.code:1:1: error: ‘n’ does not name a type 1 | n = int(input()) | ^