結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 29 ms
17,696 KB
testcase_02 WA -
testcase_03 AC 28 ms
16,000 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 29 ms
23,680 KB
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 29 ms
16,000 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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