QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#494344#5006. HeximalssmyWA 14ms10636kbPython3105b2024-07-27 15:19:482024-07-27 15:19:48

Judging History

你现在查看的是最新测评结果

  • [2024-07-27 15:19:48]
  • 评测
  • 测评结果:WA
  • 用时:14ms
  • 内存:10636kb
  • [2024-07-27 15:19:48]
  • 提交

answer

n = int(input())
cnt = 0
if n == 0:
    print(1)
while n != 0:
    n //= 6
    cnt += 1
print(cnt)

详细

Test #1:

score: 0
Wrong Answer
time: 14ms
memory: 10636kb

input:

0

output:

1
0

result:

wrong output format Extra information in the output file