結果

問題 No.938 賢人を探せ
ユーザー yansi819yansi819
提出日時 2024-05-11 20:42:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 78,556 KB
最終ジャッジ日時 2024-12-20 08:48:30
合計ジャッジ時間 2,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
78,556 KB
testcase_01 AC 39 ms
53,704 KB
testcase_02 AC 37 ms
52,068 KB
testcase_03 AC 41 ms
53,116 KB
testcase_04 AC 41 ms
52,376 KB
testcase_05 AC 40 ms
52,812 KB
testcase_06 AC 41 ms
52,088 KB
testcase_07 AC 40 ms
52,956 KB
testcase_08 AC 84 ms
77,264 KB
testcase_09 AC 85 ms
77,628 KB
testcase_10 AC 38 ms
54,004 KB
testcase_11 AC 87 ms
77,820 KB
testcase_12 AC 90 ms
77,408 KB
testcase_13 AC 88 ms
77,280 KB
testcase_14 AC 90 ms
77,536 KB
testcase_15 AC 90 ms
77,208 KB
testcase_16 AC 88 ms
77,376 KB
testcase_17 AC 91 ms
77,376 KB
testcase_18 AC 89 ms
77,404 KB
testcase_19 AC 92 ms
77,464 KB
testcase_20 AC 88 ms
76,992 KB
testcase_21 AC 88 ms
77,312 KB
testcase_22 AC 97 ms
78,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = set()
B = []
K = set()
for _ in range(N):
    a, b = map(str, input().split())
    A.add(a)
    B.append(b)

for b in B:
    if not b in A and not b in K:
        print(b)
        K.add(b)
0