結果

問題 No.938 賢人を探せ
ユーザー yansi819yansi819
提出日時 2024-05-11 19:02:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 247 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 159,020 KB
最終ジャッジ日時 2024-12-20 08:41:31
合計ジャッジ時間 16,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 642 ms
87,680 KB
testcase_01 AC 38 ms
111,572 KB
testcase_02 AC 38 ms
59,244 KB
testcase_03 AC 38 ms
114,284 KB
testcase_04 TLE -
testcase_05 AC 38 ms
52,572 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 38 ms
52,680 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 574 ms
159,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = {}
for _ in range(N):
    a, b = map(str, input().split())
    D[a] = b
    while b in D:
        b = D[b]
        D[a] = b

ans = []
for b in D.values():
    if not b in ans:
        ans.append(b)

for b in ans:
    print(b)
0