結果

問題 No.191 供託金
ユーザー a_tena_ten
提出日時 2016-03-13 17:35:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-16 22:02:34
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

N=input()
mon=map(int,raw_input().split())

all_mon=0
for i in mon:
	all_mon+=i

s=[]
for i in mon:
	if i <= all_mon/10:
		s.append(i)

print 30*len(s)
0