/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 14ms 2.902 MiB
#2 Accepted 14ms 2.98 MiB
#3 Accepted 14ms 2.926 MiB
#4 Accepted 14ms 3.113 MiB
#5 Wrong Answer 14ms 3.105 MiB
#6 Wrong Answer 15ms 3.105 MiB
#7 Accepted 14ms 3.113 MiB

Code

t=int(input())
if t<5:
    print(10)
elif t>=5:
    if t % 2 != 0 and t % 5 != 0:
        print(10)
    elif t % 10 == 0:
        print(1)
    elif t % 5 == 0:
        print(2)
    elif t % 2 == 0:
        print(5)

Information

Submit By
Type
Submission
Problem
P1012 Zéros de fin
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 04:25:29
Judged At
2024-10-03 14:03:07
Judged By
Score
80
Total Time
15ms
Peak Memory
3.113 MiB