結果

問題 No.804 野菜が苦手
ユーザー ameame
提出日時 2019-03-22 21:27:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-09-19 02:46:23
合計ジャッジ時間 5,411 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 111 ms
41,224 KB
testcase_02 AC 107 ms
41,444 KB
testcase_03 AC 110 ms
41,316 KB
testcase_04 AC 116 ms
41,268 KB
testcase_05 AC 108 ms
40,828 KB
testcase_06 AC 119 ms
41,100 KB
testcase_07 AC 134 ms
41,460 KB
testcase_08 WA -
testcase_09 AC 102 ms
39,788 KB
testcase_10 AC 119 ms
41,156 KB
testcase_11 AC 121 ms
41,392 KB
testcase_12 AC 119 ms
41,668 KB
testcase_13 AC 120 ms
41,416 KB
testcase_14 AC 107 ms
40,008 KB
testcase_15 AC 120 ms
41,428 KB
testcase_16 AC 121 ms
41,324 KB
testcase_17 AC 103 ms
40,004 KB
testcase_18 AC 105 ms
40,544 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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 cnt = 0;
        while (true) {
            cnt++;
            if(cnt == a + 1){
                break;
            }
            if (cnt * c > b) {
                break;
            }
            if (cnt + b > d) {
                break;
            }
        }
        System.out.println(cnt - 1);
        sc.close();
    }
}
0