QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#60925#5006. HeximalJesRE 0ms0kbPython2112b2022-11-08 14:39:582022-11-08 14:40:01

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:40:01]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2022-11-08 14:39:58]
  • 提交

answer

import math

s = eval(input())
a = 1
if s == 0.0:
    print(1)
else:
    print(int(math.log(s, 6)) + 1)

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Runtime Error

input:

0

output:


result: