結果

問題 No.804 野菜が苦手
ユーザー nohopennohopen
提出日時 2019-06-29 18:58:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,882 ms
コンパイル使用メモリ 90,916 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-07-02 05:36:39
合計ジャッジ時間 6,476 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,832 KB
testcase_01 AC 137 ms
54,232 KB
testcase_02 AC 134 ms
53,868 KB
testcase_03 AC 144 ms
53,924 KB
testcase_04 AC 142 ms
53,816 KB
testcase_05 AC 139 ms
53,976 KB
testcase_06 AC 143 ms
54,088 KB
testcase_07 AC 143 ms
54,164 KB
testcase_08 AC 140 ms
53,948 KB
testcase_09 AC 142 ms
53,704 KB
testcase_10 AC 142 ms
55,980 KB
testcase_11 AC 144 ms
53,908 KB
testcase_12 AC 139 ms
53,920 KB
testcase_13 AC 145 ms
54,264 KB
testcase_14 AC 143 ms
54,052 KB
testcase_15 AC 143 ms
53,828 KB
testcase_16 AC 141 ms
54,092 KB
testcase_17 AC 143 ms
53,904 KB
testcase_18 AC 141 ms
54,068 KB
testcase_19 AC 141 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.util.stream.IntStream;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String[] sa = sc.nextLine().split(" ");
    int[] i = Stream.of(sa).mapToInt(Integer::parseInt).toArray();
    List<Integer> list = new ArrayList<>();
    list.add(i[0]);
    list.add( i[1] / i[2] );
    list.add( i[3] / (1 + i[2]) );
    Optional<Integer> min = list.stream().min((a, b) -> a.compareTo(b));
    System.out.println(min.get());
  }
}
0