/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 15ms 3.113 MiB
#2 Accepted 15ms 3.121 MiB
#3 Accepted 15ms 2.988 MiB
#4 Accepted 15ms 3.074 MiB
#5 Accepted 15ms 3.113 MiB
#6 Accepted 15ms 3.078 MiB
#7 Accepted 16ms 3.078 MiB
#8 Accepted 18ms 2.875 MiB
#9 Accepted 19ms 3.086 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
                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:58
Judged At
2024-11-11 03:43:50
Judged By
Score
100
Total Time
19ms
Peak Memory
3.121 MiB