結果

問題 No.938 賢人を探せ
ユーザー roarisroaris
提出日時 2019-12-01 02:52:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 90,600 KB
最終ジャッジ日時 2024-05-08 08:56:21
合計ジャッジ時間 3,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
90,392 KB
testcase_01 AC 42 ms
54,120 KB
testcase_02 AC 43 ms
53,960 KB
testcase_03 AC 43 ms
54,556 KB
testcase_04 AC 43 ms
54,136 KB
testcase_05 AC 43 ms
54,464 KB
testcase_06 AC 44 ms
54,900 KB
testcase_07 AC 44 ms
53,820 KB
testcase_08 AC 105 ms
79,720 KB
testcase_09 AC 105 ms
80,452 KB
testcase_10 AC 43 ms
53,584 KB
testcase_11 AC 113 ms
81,436 KB
testcase_12 AC 119 ms
80,568 KB
testcase_13 AC 123 ms
80,600 KB
testcase_14 AC 118 ms
80,836 KB
testcase_15 AC 116 ms
80,604 KB
testcase_16 AC 118 ms
80,796 KB
testcase_17 AC 120 ms
80,628 KB
testcase_18 AC 118 ms
80,724 KB
testcase_19 AC 120 ms
80,972 KB
testcase_20 AC 118 ms
80,712 KB
testcase_21 AC 120 ms
80,812 KB
testcase_22 AC 142 ms
90,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
serial = defaultdict(int)
s1, s2 = set(), set()

for i in range(N):
    Ai, Bi = input().split()
    
    if Ai not in serial:
        serial[Ai] = i
    
    if Bi not in serial:
        serial[Bi] = i
        
    s1.add(Ai)
    s1.add(Bi)
    s2.add(Ai)
    
ans = []

for s1_i in s1:
    if s1_i not in s2:
        ans.append((s1_i, serial[s1_i]))

ans.sort(key=lambda k: k[1])

for ans_i, _ in ans:
    print(ans_i)
0