結果

問題 No.938 賢人を探せ
ユーザー Salmonize
提出日時 2020-04-17 21:42:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 183 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,568 KB
最終ジャッジ日時 2024-10-03 11:52:09
合計ジャッジ時間 6,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 2
other TLE * 1 -- * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = set()
l = list()
for _ in range(n):
    a, b = input().split()
    s.add(a)
    if b not in l:
        l.append(b)
for x in l:
    if x not in s:
        print(x)
0