結果

問題 No.938 賢人を探せ
ユーザー komkompikomkompi
提出日時 2020-05-01 20:08:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,880 KB
最終ジャッジ日時 2024-05-08 09:14:14
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
16,756 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 92 ms
13,756 KB
testcase_09 AC 91 ms
13,948 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 100 ms
14,264 KB
testcase_12 AC 85 ms
13,748 KB
testcase_13 AC 84 ms
14,004 KB
testcase_14 AC 85 ms
13,884 KB
testcase_15 AC 83 ms
13,896 KB
testcase_16 AC 82 ms
13,748 KB
testcase_17 AC 85 ms
13,752 KB
testcase_18 AC 86 ms
13,764 KB
testcase_19 AC 84 ms
13,748 KB
testcase_20 AC 85 ms
13,876 KB
testcase_21 AC 87 ms
14,008 KB
testcase_22 AC 118 ms
16,880 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