結果

問題 No.191 供託金
ユーザー steek79
提出日時 2015-10-13 00:27:24
言語 Python2
(2.7.18)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-16 21:40:59
合計ジャッジ時間 1,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
votes = map(int, raw_input().split())
ans = 0

for v in votes:
    if v <= sum(votes)/10:
        ans += 1

print 30 * ans
0