From abea187f677af7b8a761ce45810cd0b2c9204c6e Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Mon, 3 Jul 2023 20:14:35 +0200 Subject: [PATCH] ICPC Awards --- icpcawards.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 icpcawards.py diff --git a/icpcawards.py b/icpcawards.py new file mode 100644 index 0000000..2436e0a --- /dev/null +++ b/icpcawards.py @@ -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]}")