結果

問題 No.5 数字のブロック
ユーザー
提出日時 2016-01-18 21:43:19
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 32,480 KB
実行使用メモリ 32,928 KB
最終ジャッジ日時 2023-10-21 06:48:33
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
32,740 KB
testcase_01 AC 40 ms
32,740 KB
testcase_02 WA -
testcase_03 AC 46 ms
32,800 KB
testcase_04 AC 46 ms
32,800 KB
testcase_05 AC 48 ms
32,800 KB
testcase_06 AC 47 ms
32,800 KB
testcase_07 AC 44 ms
32,800 KB
testcase_08 AC 47 ms
32,800 KB
testcase_09 AC 43 ms
32,800 KB
testcase_10 AC 49 ms
32,800 KB
testcase_11 AC 45 ms
32,800 KB
testcase_12 AC 45 ms
32,800 KB
testcase_13 AC 47 ms
32,800 KB
testcase_14 AC 41 ms
32,800 KB
testcase_15 AC 40 ms
32,800 KB
testcase_16 AC 49 ms
32,800 KB
testcase_17 AC 48 ms
32,800 KB
testcase_18 AC 49 ms
32,800 KB
testcase_19 AC 50 ms
32,800 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 40 ms
32,800 KB
testcase_24 AC 41 ms
32,800 KB
testcase_25 AC 42 ms
32,800 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 45 ms
32,800 KB
testcase_30 AC 44 ms
32,800 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$all = trim(fgets(STDIN));

$num = trim(fgets(STDIN));

$numAll = trim(fgets(STDIN));

$num_all = explode(" ", $numAll);

sort($num_all);

$answer = 0;

foreach($num_all as $key => $value){
    $answer += $value;
    if($answer > $all){
        $answer_i[] = $key;
    }
}

if($answer_i[0] === 0){
    echo 1;
}else{
    echo $answer_i[0];
}
echo "\n";
0