/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 14ms 3.02 MiB
#2 Wrong Answer 14ms 3.098 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-11-11 03:43:50
Judged By
Score
0
Total Time
14ms
Peak Memory
3.098 MiB