結果

問題 No.1468 Colourful Pastel
ユーザー convexineqconvexineq
提出日時 2021-04-04 20:30:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 153 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 86,796 KB
実行使用メモリ 95,604 KB
最終ジャッジ日時 2023-08-27 22:07:03
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
95,176 KB
testcase_01 AC 140 ms
95,064 KB
testcase_02 AC 89 ms
71,316 KB
testcase_03 AC 89 ms
71,744 KB
testcase_04 AC 89 ms
71,584 KB
testcase_05 AC 91 ms
71,400 KB
testcase_06 AC 90 ms
71,432 KB
testcase_07 AC 90 ms
71,336 KB
testcase_08 AC 90 ms
71,692 KB
testcase_09 AC 90 ms
71,512 KB
testcase_10 AC 90 ms
71,436 KB
testcase_11 AC 90 ms
71,460 KB
testcase_12 AC 88 ms
71,672 KB
testcase_13 AC 89 ms
71,668 KB
testcase_14 AC 89 ms
71,336 KB
testcase_15 AC 88 ms
71,440 KB
testcase_16 AC 89 ms
71,748 KB
testcase_17 AC 87 ms
71,688 KB
testcase_18 AC 89 ms
71,540 KB
testcase_19 AC 88 ms
71,400 KB
testcase_20 AC 90 ms
71,716 KB
testcase_21 AC 89 ms
71,308 KB
testcase_22 AC 90 ms
71,328 KB
testcase_23 AC 89 ms
71,616 KB
testcase_24 AC 90 ms
71,332 KB
testcase_25 AC 90 ms
71,520 KB
testcase_26 AC 89 ms
71,404 KB
testcase_27 AC 135 ms
95,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = input()
d = Counter(input().split())
for i in input().split():
    d[i] -= 1
for k,v in d.items():
    if v: print(k)
0