結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
23,424 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 878 ms
12,160 KB
testcase_09 AC 703 ms
12,288 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 1,240 ms
14,592 KB
testcase_12 AC 1,621 ms
12,416 KB
testcase_13 AC 1,637 ms
12,416 KB
testcase_14 AC 1,635 ms
12,416 KB
testcase_15 AC 1,628 ms
12,416 KB
testcase_16 AC 1,613 ms
12,288 KB
testcase_17 AC 1,637 ms
12,544 KB
testcase_18 AC 1,613 ms
12,544 KB
testcase_19 AC 1,620 ms
12,160 KB
testcase_20 AC 1,612 ms
12,288 KB
testcase_21 AC 1,622 ms
12,544 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 B and not a in A:
        A.append(a)
for a in A:
    if a not in B:
        print(a)
0