結果

問題 No.191 供託金
ユーザー yumechi
提出日時 2015-04-26 22:26:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 166 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-07 15:51:11
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
moneys = list(map(int, input().split()))
ave = sum(moneys) / len(moneys)
res = 0
for _ in range(N):
    res += 30 if ave >= moneys else 0
print(res)
0