結果

問題 No.938 賢人を探せ
ユーザー convexineqconvexineq
提出日時 2020-12-19 20:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 79,400 KB
最終ジャッジ日時 2024-12-14 12:02:05
合計ジャッジ時間 2,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
79,352 KB
testcase_01 AC 37 ms
53,284 KB
testcase_02 AC 37 ms
52,952 KB
testcase_03 AC 39 ms
52,180 KB
testcase_04 AC 39 ms
51,900 KB
testcase_05 AC 39 ms
52,328 KB
testcase_06 AC 38 ms
52,708 KB
testcase_07 AC 39 ms
53,100 KB
testcase_08 AC 81 ms
77,184 KB
testcase_09 AC 81 ms
77,428 KB
testcase_10 AC 38 ms
52,144 KB
testcase_11 AC 82 ms
77,972 KB
testcase_12 AC 83 ms
77,020 KB
testcase_13 AC 86 ms
77,636 KB
testcase_14 AC 83 ms
77,216 KB
testcase_15 AC 84 ms
77,884 KB
testcase_16 AC 82 ms
77,448 KB
testcase_17 AC 85 ms
77,420 KB
testcase_18 AC 84 ms
77,292 KB
testcase_19 AC 84 ms
77,304 KB
testcase_20 AC 82 ms
77,428 KB
testcase_21 AC 84 ms
77,536 KB
testcase_22 AC 95 ms
79,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
bad = set()
good = []
for _ in range(n):
    a,b = input().split()
    bad.add(a)
    good.append(b)

for i in good:
    if i not in bad:
        print(i)
        bad.add(i)
0