結果
| 問題 |
No.191 供託金
|
| コンテスト | |
| ユーザー |
nisizawa
|
| 提出日時 | 2017-12-17 03:20:53 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 5,000 ms |
| コード長 | 131 bytes |
| コンパイル時間 | 661 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-15 00:03:10 |
| 合計ジャッジ時間 | 2,345 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
n = int(input()) c_ls = [int(c) for c in input().split()] l = sum(c_ls) / 10 ct = len([c for c in c_ls if c <= l]) print(30 * ct)
nisizawa