結果
問題 | No.191 供託金 |
ユーザー | szkake |
提出日時 | 2015-08-19 17:50:03 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 213 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-16 20:57:44 |
合計ジャッジ時間 | 1,581 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
# -*- coding:utf-8 -*-deposit = 30border = 10if __name__ == '__main__':n, c = int(input()), tuple(map(int, input().split()))print(len(list(filter(lambda x: x <= int(sum(c) / border), c))) * deposit)