Wrong Answer
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