結果

問題 No.938 賢人を探せ
ユーザー neterukunneterukun
提出日時 2019-12-01 00:08:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 79,800 KB
最終ジャッジ日時 2024-11-21 03:46:11
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
79,584 KB
testcase_01 WA -
testcase_02 AC 35 ms
53,076 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,340 KB
testcase_05 AC 35 ms
52,880 KB
testcase_06 AC 36 ms
53,628 KB
testcase_07 AC 36 ms
52,004 KB
testcase_08 AC 83 ms
78,896 KB
testcase_09 AC 81 ms
78,936 KB
testcase_10 AC 35 ms
52,708 KB
testcase_11 AC 81 ms
79,312 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 88 ms
79,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
info = [input().split() for i in range(n)]

set_ = set([])
for i in range(n):
    a, b = info[i]
    set_.add(a)

for i in range(n):
    a, b = info[i]
    if b not in set_:
        print(b)
0