結果

問題 No.938 賢人を探せ
ユーザー O2MTO2MT
提出日時 2020-11-22 00:50:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 87,688 KB
最終ジャッジ日時 2024-07-23 16:09:09
合計ジャッジ時間 24,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 WA -
testcase_02 AC 38 ms
53,852 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,288 KB
testcase_11 WA -
testcase_12 AC 1,136 ms
80,012 KB
testcase_13 AC 1,097 ms
79,860 KB
testcase_14 AC 1,120 ms
79,908 KB
testcase_15 AC 1,097 ms
80,128 KB
testcase_16 AC 1,102 ms
79,940 KB
testcase_17 AC 1,137 ms
79,752 KB
testcase_18 AC 1,124 ms
79,964 KB
testcase_19 AC 1,098 ms
79,968 KB
testcase_20 AC 1,116 ms
79,724 KB
testcase_21 AC 1,107 ms
80,216 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = {}
name_list = []

for _ in range(N):
    a,b = map(str,input().split())
    abdict = {a:0,b:0}
    D.update(abdict)
    if a not in name_list:
        name_list.append(a)
    if b not in name_list:
        name_list.append(b)
    D[a] += 1
for n in name_list:
    if D[n] == 0:
        print(n)
0