結果
問題 | No.191 供託金 |
ユーザー | nanae |
提出日時 | 2017-01-04 06:46:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 24 ms / 5,000 ms |
コード長 | 202 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-16 11:05:19 |
合計ジャッジ時間 | 1,678 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
# yukicoder No.191 供託金 N = int(input()) C = [int(x) for x in input().split()] bosshu = 0 total = sum(C) ikiti = total / 10 for x in C: if x <= ikiti: bosshu += 1 print(30 * bosshu)