結果
| 問題 | No.191 供託金 |
| コンテスト | |
| ユーザー |
neko_the_shadow
|
| 提出日時 | 2017-03-25 22:24:29 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 91 ms / 5,000 ms |
| + 296µs | |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 21,416 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-08-09 04:14:07 |
| 合計ジャッジ時間 | 4,548 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
if __name__ == '__main__':
n = int(input())
votes = tuple(map(int, input().split()))
bound = sum(votes) / 10
cnt = 0
for vote in votes:
if vote <= bound: cnt += 1
print(cnt * 30)
neko_the_shadow