QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#494344 | #5006. Heximal | ssmy | WA | 14ms | 10636kb | Python3 | 105b | 2024-07-27 15:19:48 | 2024-07-27 15:19:48 |
Judging History
answer
n = int(input())
cnt = 0
if n == 0:
print(1)
while n != 0:
n //= 6
cnt += 1
print(cnt)
Details
Tip: Click on the bar to expand more detailed information
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