QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#494345 | #5006. Heximal | ssmy | Compile Error | / | / | Python3 | 112b | 2024-07-27 15:20:07 | 2024-07-27 15:20:07 |
Judging History
answer
n = int(input())
cnt = 0
if n == 0:
print(1)
else:
while n != 0:
n //= 6
cnt += 1
print(cnt)
详细
Sorry: IndentationError: expected an indented block after 'else' statement on line 5 (answer.code, line 6)