結果
問題 | No.1468 Colourful Pastel |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:05:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 101 ms / 1,000 ms |
コード長 | 192 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 97,616 KB |
最終ジャッジ日時 | 2025-03-20 21:06:07 |
合計ジャッジ時間 | 2,824 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
n = int(input())a = input().split()b = input().split()from collections import Countercount_a = Counter(a)count_b = Counter(b)diff = count_a - count_bprint(diff.most_common(1)[0][0])