結果

問題 No.938 賢人を探せ
ユーザー masumasumath1masumasumath1
提出日時 2019-12-01 17:54:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 178 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,568 KB
最終ジャッジ日時 2024-11-21 12:50:10
合計ジャッジ時間 34,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 29 ms
17,568 KB
testcase_02 AC 30 ms
15,616 KB
testcase_03 AC 28 ms
17,572 KB
testcase_04 AC 29 ms
15,616 KB
testcase_05 AC 30 ms
15,616 KB
testcase_06 AC 29 ms
10,368 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 29 ms
10,624 KB
testcase_11 TLE -
testcase_12 AC 1,641 ms
12,288 KB
testcase_13 AC 1,611 ms
12,288 KB
testcase_14 AC 1,597 ms
12,032 KB
testcase_15 AC 1,605 ms
12,288 KB
testcase_16 AC 1,600 ms
12,160 KB
testcase_17 AC 1,629 ms
12,416 KB
testcase_18 AC 1,599 ms
12,032 KB
testcase_19 AC 1,584 ms
12,288 KB
testcase_20 AC 1,620 ms
12,288 KB
testcase_21 AC 1,622 ms
12,288 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = set()
A = []
for i in range(N):
    b,a = input().split()
    B.add(b)
    if not a in A:
        A.append(a)
for a in A:
    if a not in B:
        print(a)
0