結果

問題 No.938 賢人を探せ
ユーザー komkompikomkompi
提出日時 2020-05-01 20:08:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,752 KB
最終ジャッジ日時 2024-12-14 11:59:21
合計ジャッジ時間 2,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
16,748 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 91 ms
13,632 KB
testcase_09 AC 92 ms
13,944 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 103 ms
14,136 KB
testcase_12 AC 88 ms
13,624 KB
testcase_13 AC 88 ms
13,884 KB
testcase_14 AC 88 ms
13,876 KB
testcase_15 AC 87 ms
13,624 KB
testcase_16 AC 87 ms
13,752 KB
testcase_17 AC 87 ms
13,668 KB
testcase_18 AC 87 ms
13,748 KB
testcase_19 AC 88 ms
13,620 KB
testcase_20 AC 86 ms
13,748 KB
testcase_21 AC 89 ms
13,880 KB
testcase_22 AC 125 ms
16,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N=int(input())
org=[]
dic={}
for _ in range(N):
    A,B=input().split()
    org.append(B)
    if A in dic:
        dic[A][0]+=1
    else:
        dic[A]=[1,0]
    
    if B in dic:
        dic[B][1]+=1
    else:
        dic[B]=[0,1]

for k in dic:
    if dic[k][0]==0:
        print(k)
0