/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 12ms 2.68 MiB
#2 Wrong Answer 12ms 2.746 MiB
#3 Wrong Answer 12ms 2.895 MiB
#4 Wrong Answer 11ms 2.777 MiB
#5 Wrong Answer 12ms 2.887 MiB
#6 Wrong Answer 12ms 2.777 MiB
#7 Wrong Answer 13ms 2.777 MiB
#8 Wrong Answer 15ms 2.879 MiB
#9 Wrong Answer 16ms 2.875 MiB

Code

t = int(input())
for i in range(1,t+1):
    a , u = map(int, input().split())
    if u == 0:
        print(f"Game #{i}: 0 / 1")
    
    else:
        for j in range(u,0,-1):
            if u%j == 0 and a%j == 0:
                x = (u//j)*100
                y = a//j
                print(f"Game #{i}: {x} / {y}")
                break


        

Information

Submit By
Type
Submission
Problem
P1001 Achievement-Unlocked
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-06 10:51:16
Judged At
2024-01-06 10:51:16
Judged By
Score
0
Total Time
16ms
Peak Memory
2.895 MiB