結果

問題 No.1468 Colourful Pastel
ユーザー 👑 yumechiyumechi
提出日時 2021-04-08 02:51:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 142 bytes
コンパイル時間 682 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 95,560 KB
最終ジャッジ日時 2023-09-05 11:02:30
合計ジャッジ時間 4,937 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
92,148 KB
testcase_01 AC 136 ms
92,136 KB
testcase_02 AC 98 ms
71,560 KB
testcase_03 AC 97 ms
71,468 KB
testcase_04 AC 98 ms
71,768 KB
testcase_05 AC 98 ms
71,804 KB
testcase_06 AC 98 ms
71,560 KB
testcase_07 AC 97 ms
71,612 KB
testcase_08 AC 97 ms
71,312 KB
testcase_09 AC 97 ms
71,596 KB
testcase_10 AC 99 ms
71,756 KB
testcase_11 AC 95 ms
71,612 KB
testcase_12 AC 97 ms
71,472 KB
testcase_13 AC 96 ms
71,736 KB
testcase_14 AC 97 ms
71,700 KB
testcase_15 AC 99 ms
71,480 KB
testcase_16 AC 98 ms
71,516 KB
testcase_17 AC 96 ms
71,612 KB
testcase_18 AC 98 ms
71,492 KB
testcase_19 AC 97 ms
71,556 KB
testcase_20 AC 96 ms
71,308 KB
testcase_21 AC 95 ms
71,796 KB
testcase_22 AC 98 ms
71,760 KB
testcase_23 AC 98 ms
71,412 KB
testcase_24 AC 97 ms
71,556 KB
testcase_25 AC 96 ms
71,764 KB
testcase_26 AC 97 ms
71,468 KB
testcase_27 AC 138 ms
95,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
a = Counter(input().split()) + Counter(input().split())
print([e for e in a if a[e] % 2][0])
0