結果
問題 |
No.191 供託金
|
ユーザー |
![]() |
提出日時 | 2015-08-19 17:49:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 211 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-07 16:10:41 |
合計ジャッジ時間 | 1,717 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | WA * 23 |
ソースコード
# -*- coding:utf-8 -*- deposit = 30 border = 10 if __name__ == '__main__': n, c = int(input()), tuple(map(int, input().split())) print(len(list(filter(lambda x: x <= int(sum(c) / border), c))) * 30000)