結果

問題 No.804 野菜が苦手
ユーザー sato_eventsato_event
提出日時 2019-04-11 15:51:42
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 30,936 KB
実行使用メモリ 31,520 KB
最終ジャッジ日時 2024-07-18 14:57:11
合計ジャッジ時間 1,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,180 KB
testcase_01 AC 44 ms
31,280 KB
testcase_02 AC 41 ms
31,388 KB
testcase_03 AC 41 ms
31,040 KB
testcase_04 AC 42 ms
30,956 KB
testcase_05 AC 41 ms
31,416 KB
testcase_06 AC 41 ms
31,144 KB
testcase_07 AC 41 ms
31,508 KB
testcase_08 AC 41 ms
31,336 KB
testcase_09 AC 42 ms
31,148 KB
testcase_10 AC 42 ms
31,280 KB
testcase_11 AC 41 ms
31,280 KB
testcase_12 AC 41 ms
31,184 KB
testcase_13 AC 42 ms
31,520 KB
testcase_14 AC 41 ms
31,392 KB
testcase_15 AC 43 ms
31,500 KB
testcase_16 AC 42 ms
30,872 KB
testcase_17 AC 42 ms
31,472 KB
testcase_18 AC 42 ms
31,444 KB
testcase_19 AC 40 ms
31,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?PHP
$input=trim(fgets(STDIN));  
$arr=explode(' ',$input);
$base_yasai = intval($arr[0]);   // A個の野菜
$base_niku = intval($arr[1]);    // B個の肉
$niku_bai = intval($arr[2]);// C倍の肉
$max = intval($arr[3]);     // 野菜と肉の合計はここ以下になる
$result_yasai = 0;          //食べる野菜
$result_niku = 0;           //食べる肉

//野菜の数まで加算していく
for($i=1; $i<=$base_yasai; $i++){
    //野菜に値して必要な肉を計算
    $desire_niku = $i*$niku_bai;
    //肉が足りているか確認
    if($desire_niku <= $base_niku){
        //足りている場合、許容値を超えないか確認
        if( $i+$desire_niku <= $max){
            $result_yasai = $i;
            $result_niku = $desire_niku;
        }
    }
}
echo $result_yasai;
?>
0