結果

問題 No.191 供託金
ユーザー nebukuro09
提出日時 2016-09-08 09:04:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 84 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-16 22:33:51
合計ジャッジ時間 1,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
s = map(int,raw_input().split())
print sum([30 for a in s if a*10<=sum(s)])
0