QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#60924#5006. HeximalJesRE 0ms0kbPython2108b2022-11-08 14:39:222022-11-08 14:39: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-08 14:39:24]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2022-11-08 14:39:22]
  • 提交

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

output:


result: