結果

問題 No.804 野菜が苦手
ユーザー syusyu
提出日時 2020-08-30 19:55:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-11-15 15:14:59
合計ジャッジ時間 4,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,136 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 117 ms
41,124 KB
testcase_04 AC 118 ms
40,884 KB
testcase_05 AC 107 ms
40,200 KB
testcase_06 AC 116 ms
41,612 KB
testcase_07 AC 120 ms
41,624 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 118 ms
41,532 KB
testcase_15 AC 104 ms
39,880 KB
testcase_16 AC 115 ms
41,016 KB
testcase_17 AC 106 ms
40,244 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