結果

問題 No.1468 Colourful Pastel
ユーザー dangodango
提出日時 2023-06-25 13:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 1,088 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 95,668 KB
最終ジャッジ日時 2023-09-15 08:56:54
合計ジャッジ時間 5,050 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
92,180 KB
testcase_01 AC 137 ms
92,056 KB
testcase_02 AC 97 ms
71,572 KB
testcase_03 AC 92 ms
71,680 KB
testcase_04 AC 94 ms
71,620 KB
testcase_05 AC 92 ms
71,652 KB
testcase_06 AC 91 ms
71,584 KB
testcase_07 AC 93 ms
71,680 KB
testcase_08 AC 92 ms
71,672 KB
testcase_09 AC 91 ms
71,644 KB
testcase_10 AC 91 ms
71,668 KB
testcase_11 AC 90 ms
71,568 KB
testcase_12 AC 92 ms
71,600 KB
testcase_13 AC 90 ms
71,652 KB
testcase_14 AC 90 ms
71,776 KB
testcase_15 AC 91 ms
71,716 KB
testcase_16 AC 91 ms
71,396 KB
testcase_17 AC 91 ms
71,864 KB
testcase_18 AC 94 ms
71,536 KB
testcase_19 AC 93 ms
71,716 KB
testcase_20 AC 90 ms
71,760 KB
testcase_21 AC 93 ms
71,716 KB
testcase_22 AC 91 ms
71,752 KB
testcase_23 AC 92 ms
71,640 KB
testcase_24 AC 92 ms
71,636 KB
testcase_25 AC 93 ms
71,532 KB
testcase_26 AC 92 ms
71,676 KB
testcase_27 AC 134 ms
95,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
input()
print(*(Counter(input().split()) - Counter(input().split())))
0