結果

問題 No.938 賢人を探せ
ユーザー NoviNovi
提出日時 2019-12-01 20:45:30
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 273 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 78,880 KB
最終ジャッジ日時 2024-05-08 08:59:57
合計ジャッジ時間 13,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 40 ms
52,140 KB
testcase_02 AC 39 ms
51,864 KB
testcase_03 AC 40 ms
52,880 KB
testcase_04 AC 38 ms
52,988 KB
testcase_05 AC 39 ms
52,272 KB
testcase_06 AC 39 ms
53,636 KB
testcase_07 AC 39 ms
52,640 KB
testcase_08 AC 328 ms
77,256 KB
testcase_09 AC 357 ms
77,232 KB
testcase_10 AC 40 ms
53,008 KB
testcase_11 AC 896 ms
77,840 KB
testcase_12 AC 475 ms
77,176 KB
testcase_13 AC 465 ms
77,276 KB
testcase_14 AC 465 ms
77,392 KB
testcase_15 AC 470 ms
77,344 KB
testcase_16 AC 456 ms
77,436 KB
testcase_17 AC 475 ms
77,192 KB
testcase_18 AC 465 ms
77,340 KB
testcase_19 AC 473 ms
77,628 KB
testcase_20 AC 465 ms
77,612 KB
testcase_21 AC 470 ms
77,256 KB
testcase_22 AC 1,698 ms
78,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
fir=[]
sec=[]
for i in range(n):
    q,r=map(str,input().split())
    fir.append(q)
    sec.append(r)
ans=[]
for i in range(n):
    if sec[i] not in fir:
        if sec[i] not in ans:
            ans.append(sec[i])
for i in range(len(ans)):
    print(ans[i])
0