結果

問題 No.938 賢人を探せ
ユーザー ntudantuda
提出日時 2024-09-01 21:09:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 80,632 KB
最終ジャッジ日時 2024-09-01 21:09:37
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
80,504 KB
testcase_01 AC 37 ms
52,320 KB
testcase_02 AC 37 ms
53,212 KB
testcase_03 AC 37 ms
52,772 KB
testcase_04 AC 36 ms
52,200 KB
testcase_05 AC 36 ms
52,696 KB
testcase_06 AC 36 ms
51,936 KB
testcase_07 AC 37 ms
52,340 KB
testcase_08 AC 78 ms
79,132 KB
testcase_09 AC 79 ms
79,112 KB
testcase_10 AC 36 ms
52,064 KB
testcase_11 AC 83 ms
79,044 KB
testcase_12 AC 84 ms
79,088 KB
testcase_13 AC 82 ms
79,284 KB
testcase_14 AC 83 ms
79,084 KB
testcase_15 AC 87 ms
79,000 KB
testcase_16 AC 82 ms
79,248 KB
testcase_17 AC 84 ms
78,944 KB
testcase_18 AC 83 ms
79,008 KB
testcase_19 AC 81 ms
78,980 KB
testcase_20 AC 83 ms
79,068 KB
testcase_21 AC 82 ms
79,428 KB
testcase_22 AC 91 ms
80,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
AB = [input().split() for _ in range(N)]
D = set()
for a,b in AB:
    D.add(a)

for a,b in AB:
    if b not in D:
        print(b)
        D.add(b)
0