/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 13ms 3.066 MiB
#2 Accepted 14ms 3.02 MiB
#3 Wrong Answer 15ms 2.883 MiB

Code

# Get the input number x
x = int(input())

ans = 1

while x % 10 != 0:
    ans *= 10

    x //= 10

print(ans)

Information

Submit By
Type
Submission
Problem
P1012 Zéros de fin
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 03:37:47
Judged At
2024-11-11 03:43:40
Judged By
Score
10
Total Time
15ms
Peak Memory
3.066 MiB