結果

問題 No.804 野菜が苦手
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-03 16:42:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 41,152 KB
最終ジャッジ日時 2024-11-27 10:01:50
合計ジャッジ時間 4,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,520 KB
testcase_01 AC 103 ms
40,260 KB
testcase_02 AC 98 ms
40,012 KB
testcase_03 AC 95 ms
39,808 KB
testcase_04 AC 98 ms
39,936 KB
testcase_05 AC 105 ms
39,536 KB
testcase_06 AC 101 ms
40,404 KB
testcase_07 AC 98 ms
39,808 KB
testcase_08 AC 114 ms
40,948 KB
testcase_09 AC 102 ms
40,176 KB
testcase_10 AC 95 ms
39,932 KB
testcase_11 AC 105 ms
41,072 KB
testcase_12 AC 98 ms
39,904 KB
testcase_13 AC 101 ms
40,064 KB
testcase_14 AC 106 ms
40,812 KB
testcase_15 AC 100 ms
39,612 KB
testcase_16 AC 106 ms
40,716 KB
testcase_17 AC 105 ms
40,120 KB
testcase_18 AC 109 ms
41,152 KB
testcase_19 AC 110 ms
40,828 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