結果

問題 No.191 供託金
ユーザー Theta
提出日時 2022-10-24 13:24:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 206 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-02 16:13:22
合計ジャッジ時間 1,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    C = list(map(int, input().split()))
    print(
        30
        * len(list(filter(lambda hyo: (sum(C) / hyo) >= 10, C)))
    )


if __name__ == "__main__":
    main()
0