結果

問題 No.804 野菜が苦手
ユーザー ameame
提出日時 2019-03-22 21:30:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 2,632 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-09-19 02:51:33
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,184 KB
testcase_01 AC 107 ms
40,020 KB
testcase_02 AC 100 ms
40,324 KB
testcase_03 AC 101 ms
39,984 KB
testcase_04 AC 99 ms
40,296 KB
testcase_05 AC 113 ms
41,172 KB
testcase_06 AC 103 ms
40,084 KB
testcase_07 AC 127 ms
41,392 KB
testcase_08 AC 124 ms
41,296 KB
testcase_09 AC 107 ms
39,964 KB
testcase_10 AC 123 ms
41,292 KB
testcase_11 AC 107 ms
41,244 KB
testcase_12 AC 102 ms
40,160 KB
testcase_13 AC 107 ms
41,312 KB
testcase_14 AC 105 ms
40,880 KB
testcase_15 AC 93 ms
39,904 KB
testcase_16 AC 106 ms
41,156 KB
testcase_17 AC 112 ms
41,032 KB
testcase_18 AC 106 ms
41,264 KB
testcase_19 AC 108 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

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