結果

問題 No.3297 Bake Cookies
ユーザー hir355
提出日時 2025-10-05 16:40:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 117,288 KB
最終ジャッジ日時 2025-10-05 16:40:05
合計ジャッジ時間 4,808 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, m, t = map(int, input().split())
a = list(map(int, input().split()))
print(max(Counter(a).values()))
0