結果
| 問題 | No.79 過小評価ダメ・ゼッタイ |
| コンテスト | |
| ユーザー |
koheijkt
|
| 提出日時 | 2025-08-01 21:57:45 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 72 ms / 5,000 ms |
| + 943µs | |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 228 ms |
| コンパイル使用メモリ | 95,720 KB |
| 実行使用メモリ | 96,128 KB |
| 最終ジャッジ日時 | 2026-07-13 16:54:38 |
| 合計ジャッジ時間 | 3,736 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
N = int(input())
L = list(map(int, input().split()))
cnt = [0]*7
for l in L:
cnt[l] += 1
M = max(cnt)
for i in range(6, 0, -1):
if cnt[i] == M:
exit(print(i))
koheijkt