結果

問題 No.1468 Colourful Pastel
ユーザー nessiennessien
提出日時 2024-12-13 15:17:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 1,000 ms
コード長 218 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 98,832 KB
最終ジャッジ日時 2024-12-13 15:17:28
合計ジャッジ時間 2,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
98,028 KB
testcase_01 AC 100 ms
98,348 KB
testcase_02 AC 42 ms
54,552 KB
testcase_03 AC 42 ms
55,240 KB
testcase_04 AC 41 ms
55,016 KB
testcase_05 AC 42 ms
54,040 KB
testcase_06 AC 42 ms
54,284 KB
testcase_07 AC 42 ms
55,696 KB
testcase_08 AC 44 ms
53,984 KB
testcase_09 AC 41 ms
55,580 KB
testcase_10 AC 41 ms
54,032 KB
testcase_11 AC 43 ms
54,212 KB
testcase_12 AC 40 ms
53,652 KB
testcase_13 AC 41 ms
54,924 KB
testcase_14 AC 43 ms
53,780 KB
testcase_15 AC 42 ms
54,712 KB
testcase_16 AC 41 ms
54,572 KB
testcase_17 AC 41 ms
54,116 KB
testcase_18 AC 42 ms
54,396 KB
testcase_19 AC 42 ms
54,172 KB
testcase_20 AC 41 ms
54,116 KB
testcase_21 AC 41 ms
54,400 KB
testcase_22 AC 41 ms
54,244 KB
testcase_23 AC 41 ms
53,816 KB
testcase_24 AC 41 ms
54,388 KB
testcase_25 AC 40 ms
55,044 KB
testcase_26 AC 42 ms
54,720 KB
testcase_27 AC 95 ms
98,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
A = list(input().split())
B = list(input().split())

c1 = Counter(A)
c2 = Counter(B)

ans = 0
for k,v in c1.items():
	if c2[k] == 0 or c2[k] != v:
		ans = k 
print(ans)
0