結果

問題 No.191 供託金
ユーザー tazakkytazakky
提出日時 2017-09-22 23:29:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 30,828 KB
実行使用メモリ 31,460 KB
最終ジャッジ日時 2024-11-08 14:42:01
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,176 KB
testcase_01 AC 43 ms
30,928 KB
testcase_02 AC 43 ms
31,260 KB
testcase_03 AC 43 ms
30,980 KB
testcase_04 AC 43 ms
30,996 KB
testcase_05 AC 43 ms
31,292 KB
testcase_06 AC 42 ms
30,992 KB
testcase_07 AC 43 ms
31,096 KB
testcase_08 AC 43 ms
31,460 KB
testcase_09 AC 43 ms
31,260 KB
testcase_10 AC 43 ms
31,112 KB
testcase_11 AC 42 ms
31,232 KB
testcase_12 AC 44 ms
31,344 KB
testcase_13 AC 43 ms
31,184 KB
testcase_14 AC 43 ms
30,940 KB
testcase_15 AC 43 ms
31,164 KB
testcase_16 AC 43 ms
31,052 KB
testcase_17 AC 43 ms
31,116 KB
testcase_18 AC 43 ms
31,116 KB
testcase_19 AC 43 ms
30,952 KB
testcase_20 AC 43 ms
31,124 KB
testcase_21 AC 43 ms
30,928 KB
testcase_22 AC 44 ms
31,436 KB
testcase_23 AC 44 ms
31,292 KB
testcase_24 AC 43 ms
30,992 KB
testcase_25 AC 43 ms
31,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $n = trim(fgets(STDIN));
    $list = explode(" ",trim(fgets(STDIN)));
    $bosh = 0;
    for($i = 0; $i < $n; $i++){
        if($list[$i] <= array_sum($list) / 10 ){
            $bosh = $bosh + 30;
        }
    }
    echo $bosh;

?>
0