結果

問題 No.156 キャンディー・ボックス
ユーザー kurokitsunekurokitsune
提出日時 2015-03-31 04:21:35
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 30,824 KB
実行使用メモリ 31,316 KB
最終ジャッジ日時 2024-07-03 22:59:38
合計ジャッジ時間 2,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
30,988 KB
testcase_01 AC 41 ms
31,140 KB
testcase_02 AC 41 ms
31,020 KB
testcase_03 AC 35 ms
31,316 KB
testcase_04 AC 40 ms
30,780 KB
testcase_05 AC 36 ms
31,232 KB
testcase_06 AC 36 ms
31,196 KB
testcase_07 AC 38 ms
31,056 KB
testcase_08 AC 37 ms
30,916 KB
testcase_09 AC 36 ms
31,116 KB
testcase_10 AC 36 ms
31,272 KB
testcase_11 AC 34 ms
30,760 KB
testcase_12 AC 34 ms
30,836 KB
testcase_13 AC 35 ms
30,740 KB
testcase_14 AC 35 ms
30,812 KB
testcase_15 AC 34 ms
31,168 KB
testcase_16 AC 37 ms
31,008 KB
testcase_17 AC 36 ms
31,052 KB
testcase_18 AC 35 ms
30,956 KB
testcase_19 AC 35 ms
31,084 KB
testcase_20 AC 36 ms
30,912 KB
testcase_21 AC 34 ms
31,012 KB
testcase_22 AC 35 ms
30,792 KB
testcase_23 AC 34 ms
30,716 KB
testcase_24 AC 39 ms
31,212 KB
testcase_25 AC 41 ms
31,140 KB
testcase_26 AC 40 ms
31,128 KB
testcase_27 AC 40 ms
30,836 KB
testcase_28 AC 37 ms
30,716 KB
testcase_29 AC 40 ms
30,984 KB
testcase_30 AC 37 ms
30,992 KB
testcase_31 AC 36 ms
30,760 KB
testcase_32 AC 36 ms
30,916 KB
testcase_33 AC 36 ms
31,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num_array = explode(" ", fgets(STDIN));
$box_num = $num_array[0];
$need_candy_num = $num_array[1];
$candy_num = explode(" ", fgets(STDIN));

sort($candy_num);
$candy_have = 0;
$count = 0;
for($i=0; $i<$box_num; $i++){
    if($candy_have < $need_candy_num){
        $candy_have += $candy_num[$i];
        if($candy_have <= $need_candy_num){
            $count++;
        }
    }
}
echo $count."\n";
?>
0