結果

問題 No.1468 Colourful Pastel
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-04 15:06:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 100,276 KB
最終ジャッジ日時 2023-08-27 18:07:28
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
93,392 KB
testcase_01 AC 133 ms
93,476 KB
testcase_02 WA -
testcase_03 AC 91 ms
71,356 KB
testcase_04 AC 89 ms
71,580 KB
testcase_05 AC 90 ms
71,440 KB
testcase_06 AC 90 ms
71,216 KB
testcase_07 AC 90 ms
71,516 KB
testcase_08 AC 91 ms
71,444 KB
testcase_09 AC 90 ms
71,376 KB
testcase_10 AC 89 ms
71,572 KB
testcase_11 AC 90 ms
71,656 KB
testcase_12 AC 90 ms
71,436 KB
testcase_13 AC 90 ms
71,520 KB
testcase_14 AC 91 ms
71,444 KB
testcase_15 AC 91 ms
71,328 KB
testcase_16 AC 92 ms
71,696 KB
testcase_17 WA -
testcase_18 AC 91 ms
71,408 KB
testcase_19 AC 89 ms
71,700 KB
testcase_20 AC 89 ms
71,368 KB
testcase_21 AC 90 ms
71,620 KB
testcase_22 AC 90 ms
71,336 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 90 ms
71,628 KB
testcase_26 AC 89 ms
71,696 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