結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
steek79
|
| 提出日時 | 2015-10-15 23:13:06 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 61 ms / 5,000 ms |
| コード長 | 179 bytes |
| コンパイル時間 | 154 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 7,936 KB |
| 最終ジャッジ日時 | 2024-06-26 07:44:05 |
| 合計ジャッジ時間 | 1,685 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
N = input()
levels = map(int, raw_input().split())
democracy = [0] * 6
for l in levels:
democracy[l-1] += 1
#print democracy
print 6- democracy[::-1].index(max(democracy))
steek79