結果

問題 No.1468 Colourful Pastel
ユーザー 👑 KazunKazun
提出日時 2021-04-05 20:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 224 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 97,528 KB
最終ジャッジ日時 2024-06-10 06:16:45
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
97,284 KB
testcase_01 AC 91 ms
97,128 KB
testcase_02 AC 40 ms
54,728 KB
testcase_03 AC 36 ms
53,968 KB
testcase_04 AC 39 ms
53,940 KB
testcase_05 AC 41 ms
54,456 KB
testcase_06 AC 41 ms
54,388 KB
testcase_07 AC 39 ms
53,592 KB
testcase_08 AC 38 ms
54,516 KB
testcase_09 AC 40 ms
55,000 KB
testcase_10 AC 40 ms
54,444 KB
testcase_11 AC 39 ms
54,788 KB
testcase_12 AC 38 ms
54,772 KB
testcase_13 AC 39 ms
53,440 KB
testcase_14 AC 39 ms
55,464 KB
testcase_15 AC 37 ms
54,056 KB
testcase_16 AC 38 ms
54,044 KB
testcase_17 AC 39 ms
54,740 KB
testcase_18 AC 39 ms
54,196 KB
testcase_19 AC 39 ms
53,832 KB
testcase_20 AC 36 ms
54,860 KB
testcase_21 AC 40 ms
54,804 KB
testcase_22 AC 40 ms
54,168 KB
testcase_23 AC 41 ms
54,312 KB
testcase_24 AC 39 ms
54,184 KB
testcase_25 AC 40 ms
54,256 KB
testcase_26 AC 40 ms
53,952 KB
testcase_27 AC 87 ms
97,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N=int(input())
A=input().split()
B=input().split()

D=defaultdict(int)
E=defaultdict(int)

for a in A:
    D[a]+=1

for b in B:
    E[b]+=1

for a in D:
    if D[a]!=E[a]:
        print(a)
0