結果

問題 No.804 野菜が苦手
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-03 16:42:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-05-05 12:34:16
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
39,992 KB
testcase_01 AC 107 ms
41,068 KB
testcase_02 AC 110 ms
40,872 KB
testcase_03 AC 111 ms
41,364 KB
testcase_04 AC 116 ms
40,948 KB
testcase_05 AC 106 ms
41,192 KB
testcase_06 AC 95 ms
40,356 KB
testcase_07 AC 94 ms
40,348 KB
testcase_08 AC 105 ms
41,464 KB
testcase_09 AC 96 ms
40,528 KB
testcase_10 AC 111 ms
41,172 KB
testcase_11 AC 101 ms
40,368 KB
testcase_12 AC 108 ms
40,828 KB
testcase_13 AC 111 ms
41,072 KB
testcase_14 AC 108 ms
41,152 KB
testcase_15 AC 111 ms
41,052 KB
testcase_16 AC 99 ms
40,400 KB
testcase_17 AC 107 ms
41,112 KB
testcase_18 AC 92 ms
39,848 KB
testcase_19 AC 98 ms
40,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = Integer.parseInt(sc.next());
        int b = Integer.parseInt(sc.next());
        int c = Integer.parseInt(sc.next());
        int d = Integer.parseInt(sc.next());
        int ans = Math.min(d / (c + 1), Math.min(a, b / c));
        System.out.println(ans);
    }
}
0