結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-19 17:59:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 66 ms / 5,000 ms |
| コード長 | 130 bytes |
| コンパイル時間 | 383 ms |
| コンパイル使用メモリ | 82,372 KB |
| 実行使用メモリ | 81,152 KB |
| 最終ジャッジ日時 | 2024-09-16 07:33:52 |
| 合計ジャッジ時間 | 2,977 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
n = int(input())
*x, = map(int,input().split())
r = [0]*7
for i in x:
r[i] += 1
print(max(range(7)[::-1], key= lambda i:r[i]))
convexineq