結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
steek79
|
| 提出日時 | 2015-10-15 23:12:45 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 178 bytes |
| コンパイル時間 | 122 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 7,936 KB |
| 最終ジャッジ日時 | 2024-07-21 16:41:15 |
| 合計ジャッジ時間 | 1,746 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 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