結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 37 ms
52,320 KB
testcase_02 AC 36 ms
52,128 KB
testcase_03 AC 37 ms
53,420 KB
testcase_04 AC 37 ms
52,128 KB
testcase_05 AC 36 ms
53,372 KB
testcase_06 AC 36 ms
53,556 KB
testcase_07 AC 37 ms
52,272 KB
testcase_08 AC 760 ms
79,788 KB
testcase_09 AC 809 ms
80,444 KB
testcase_10 AC 37 ms
52,132 KB
testcase_11 AC 1,765 ms
80,928 KB
testcase_12 AC 1,040 ms
79,756 KB
testcase_13 AC 1,015 ms
79,796 KB
testcase_14 AC 1,038 ms
79,804 KB
testcase_15 AC 998 ms
79,668 KB
testcase_16 AC 998 ms
79,840 KB
testcase_17 AC 1,039 ms
79,752 KB
testcase_18 AC 1,019 ms
79,832 KB
testcase_19 AC 1,045 ms
80,036 KB
testcase_20 AC 962 ms
79,836 KB
testcase_21 AC 1,092 ms
79,664 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for _ in range(N):
    a,b = map(str,input().split())
    c = {a:0}
    M.update(c)
    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 n not in M:
        print(n)
0