結果

問題 No.804 野菜が苦手
ユーザー syusyu
提出日時 2020-08-30 19:55:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-04-27 13:06:44
合計ジャッジ時間 5,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,032 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 132 ms
54,204 KB
testcase_04 AC 135 ms
54,232 KB
testcase_05 AC 129 ms
54,124 KB
testcase_06 AC 129 ms
54,404 KB
testcase_07 AC 128 ms
53,912 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 130 ms
54,332 KB
testcase_15 AC 127 ms
54,252 KB
testcase_16 AC 125 ms
53,980 KB
testcase_17 AC 121 ms
53,980 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int a=sc.nextInt();
        int b=sc.nextInt();
        int c=sc.nextInt();
        int d=sc.nextInt();
        
        int unit=a+c;
        int vegetable=0;
        int totalEat=0;
        while(d>=totalEat){
            if(a>0 && b>=c){
                totalEat+=unit;
                a--;
                b-=c;
                vegetable++;
            }else{
                break;
            }
        }
        System.out.println(vegetable);
        
        
        
    }
}
0