ICPC Awards
This commit is contained in:
12
icpcawards.py
Normal file
12
icpcawards.py
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
n = int(input())
|
||||||
|
unis = []
|
||||||
|
teams = []
|
||||||
|
|
||||||
|
for i in range(n):
|
||||||
|
uni, team = input().split()
|
||||||
|
if uni not in unis:
|
||||||
|
unis.append(uni)
|
||||||
|
teams.append(team)
|
||||||
|
|
||||||
|
for i in range(12):
|
||||||
|
print(f"{unis[i]} {teams[i]}")
|
||||||
Reference in New Issue
Block a user