結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー |
|
提出日時 | 2017-12-30 21:43:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 48 ms / 5,000 ms |
コード長 | 211 bytes |
コンパイル時間 | 90 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 12,032 KB |
最終ジャッジ日時 | 2024-06-26 08:22:03 |
合計ジャッジ時間 | 1,899 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
n = int(input()) lv = input().split() tmpmaxlv = 0 tmplvct = 0 for i in range(1,7): lvct = lv.count(str(i)) if lvct >= tmplvct: tmplvct = lvct tmpmaxlv = str(i) print(tmpmaxlv)