/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 13ms 2.801 MiB
#2 Accepted 14ms 2.879 MiB
#3 Accepted 13ms 2.789 MiB
#4 Accepted 13ms 2.887 MiB
#5 Accepted 13ms 2.859 MiB
#6 Accepted 13ms 2.891 MiB
#7 Accepted 13ms 2.898 MiB
#8 Accepted 13ms 2.898 MiB
#9 Accepted 13ms 2.785 MiB

Code

def gcd(a, b):
  if b == 0:
    return a
  return gcd(b, a % b)
def print_fraction(a, u):
  g = gcd(a, u)
  x = u // g
  y = a // g
  print(str(x) + " / " + str(y))

G = int(input())
for i in range(G):
  A, U = map(int, input().split())
  print("Game #" + str(i + 1) + ": ", end="")
  print_fraction(A, U)

Information

Submit By
Type
Submission
Problem
P1001 Achievement-Unlocked
Language
Python 3 (Python 3.12.3)
Submit At
2024-01-09 14:16:12
Judged At
2024-01-09 14:16:12
Judged By
Score
100
Total Time
14ms
Peak Memory
2.898 MiB