結果

問題 No.1468 Colourful Pastel
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-04 15:06:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 98,980 KB
最終ジャッジ日時 2024-06-08 13:53:52
合計ジャッジ時間 2,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
98,228 KB
testcase_01 AC 98 ms
98,016 KB
testcase_02 WA -
testcase_03 AC 40 ms
53,688 KB
testcase_04 AC 42 ms
53,500 KB
testcase_05 AC 41 ms
53,852 KB
testcase_06 AC 40 ms
53,588 KB
testcase_07 AC 43 ms
54,720 KB
testcase_08 AC 42 ms
54,084 KB
testcase_09 AC 40 ms
55,056 KB
testcase_10 AC 42 ms
54,180 KB
testcase_11 AC 41 ms
53,756 KB
testcase_12 AC 40 ms
55,136 KB
testcase_13 AC 41 ms
54,852 KB
testcase_14 AC 40 ms
55,136 KB
testcase_15 AC 40 ms
54,440 KB
testcase_16 AC 40 ms
54,008 KB
testcase_17 WA -
testcase_18 AC 40 ms
54,540 KB
testcase_19 AC 40 ms
54,144 KB
testcase_20 AC 40 ms
53,940 KB
testcase_21 AC 41 ms
55,712 KB
testcase_22 AC 42 ms
53,936 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 40 ms
53,460 KB
testcase_26 AC 41 ms
55,052 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
A = list(input().split())
B = list(input().split())
a = Counter(A)
b = Counter(B)
for i,j in b.items():
    if a[i] != j:
        print(i)
0