結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 40 ms
52,892 KB
testcase_02 AC 38 ms
52,944 KB
testcase_03 AC 38 ms
53,428 KB
testcase_04 AC 38 ms
53,296 KB
testcase_05 AC 39 ms
52,796 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 38 ms
52,888 KB
testcase_08 AC 770 ms
79,044 KB
testcase_09 AC 796 ms
79,612 KB
testcase_10 AC 38 ms
53,568 KB
testcase_11 AC 1,588 ms
80,152 KB
testcase_12 AC 999 ms
79,928 KB
testcase_13 AC 1,015 ms
79,468 KB
testcase_14 AC 1,041 ms
80,056 KB
testcase_15 AC 992 ms
79,892 KB
testcase_16 AC 992 ms
79,872 KB
testcase_17 AC 1,032 ms
80,072 KB
testcase_18 AC 1,016 ms
79,760 KB
testcase_19 AC 987 ms
79,816 KB
testcase_20 AC 992 ms
79,800 KB
testcase_21 AC 1,012 ms
79,936 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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