QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#60924 | #5006. Heximal | Jes | RE | 0ms | 0kb | Python2 | 108b | 2022-11-08 14:39:22 | 2022-11-08 14:39:24 |
Judging History
answer
import math
s = eval(input())
a = 1
if s == 0:
print(1)
else:
print(int(math.log(s, 6)) + 1)
详细
Test #1:
score: 0
Runtime Error
input:
0