結果

問題 No.1468 Colourful Pastel
ユーザー 👑 H20H20
提出日時 2021-04-18 00:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 99,908 KB
最終ジャッジ日時 2023-09-17 07:28:30
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
93,124 KB
testcase_01 AC 137 ms
93,280 KB
testcase_02 AC 93 ms
71,260 KB
testcase_03 AC 95 ms
71,372 KB
testcase_04 AC 97 ms
71,216 KB
testcase_05 AC 96 ms
71,440 KB
testcase_06 AC 95 ms
71,340 KB
testcase_07 AC 94 ms
70,960 KB
testcase_08 AC 94 ms
71,072 KB
testcase_09 AC 92 ms
71,260 KB
testcase_10 AC 94 ms
70,932 KB
testcase_11 AC 96 ms
70,956 KB
testcase_12 AC 94 ms
71,296 KB
testcase_13 AC 93 ms
71,128 KB
testcase_14 AC 96 ms
71,380 KB
testcase_15 AC 92 ms
71,072 KB
testcase_16 AC 90 ms
71,468 KB
testcase_17 AC 93 ms
71,168 KB
testcase_18 AC 94 ms
71,116 KB
testcase_19 AC 92 ms
71,172 KB
testcase_20 AC 92 ms
71,348 KB
testcase_21 AC 91 ms
71,380 KB
testcase_22 AC 92 ms
71,472 KB
testcase_23 AC 93 ms
71,224 KB
testcase_24 AC 92 ms
71,476 KB
testcase_25 AC 92 ms
71,392 KB
testcase_26 AC 92 ms
71,384 KB
testcase_27 AC 144 ms
99,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(input().split())
B = list(input().split())
CA = collections.Counter(A)
CB = collections.Counter(B)
print(*(CA-CB).keys())
0