/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 13ms 2.828 MiB

Code

g = int(input())

for i in range(g):
	a, u = map(int, input().split())
	if a <= u:
		x = a
		y = u
	else:
		x = u
		y = a
		
	print("Game #", sep ="")
	print(i+1, sep="")
	print(":", x,"/", y)
	

Information

Submit By
Type
Pretest
Problem
P1001 Achievement-Unlocked
Language
Python 3 (Python 3.12.3)
Submit At
2023-12-31 12:41:42
Judged At
2023-12-31 12:41:42
Judged By
Score
0
Total Time
13ms
Peak Memory
2.828 MiB