結果

問題 No.191 供託金
ユーザー szkakeszkake
提出日時 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
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- 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))) * deposit)
0