結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー htensaihtensai
提出日時 2020-01-14 20:34:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,102 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 2,651 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 58,824 KB
最終ジャッジ日時 2024-11-08 13:08:54
合計ジャッジ時間 30,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,007 ms
57,616 KB
testcase_01 AC 143 ms
41,736 KB
testcase_02 AC 646 ms
48,400 KB
testcase_03 AC 972 ms
58,332 KB
testcase_04 AC 1,041 ms
58,484 KB
testcase_05 AC 1,034 ms
58,468 KB
testcase_06 AC 1,102 ms
58,588 KB
testcase_07 AC 1,038 ms
57,900 KB
testcase_08 AC 1,016 ms
57,832 KB
testcase_09 AC 1,008 ms
58,148 KB
testcase_10 AC 959 ms
58,396 KB
testcase_11 AC 985 ms
58,548 KB
testcase_12 AC 1,018 ms
58,520 KB
testcase_13 AC 1,032 ms
58,336 KB
testcase_14 AC 1,055 ms
58,824 KB
testcase_15 AC 1,023 ms
58,168 KB
testcase_16 AC 1,097 ms
58,584 KB
testcase_17 AC 1,092 ms
58,384 KB
testcase_18 AC 1,094 ms
58,340 KB
testcase_19 AC 1,074 ms
58,144 KB
testcase_20 AC 1,045 ms
57,768 KB
testcase_21 AC 1,074 ms
57,692 KB
testcase_22 AC 1,005 ms
58,344 KB
testcase_23 AC 1,037 ms
58,416 KB
testcase_24 AC 132 ms
40,932 KB
testcase_25 AC 233 ms
45,428 KB
testcase_26 AC 203 ms
42,324 KB
testcase_27 AC 197 ms
42,296 KB
testcase_28 AC 471 ms
48,096 KB
testcase_29 AC 348 ms
47,504 KB
testcase_30 AC 239 ms
45,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        long k = sc.nextLong();
        double left = 0;
        double right = 1000000000;
        for (int j = 0; j < 100; j++) {
            double m = (left + right) / 2;
            long count = 0;
            for (int i = 0; i < n; i++) {
                count += (long)(arr[i] / m);
            }
            if (count < k) {
                right = m;
            } else {
                left = m;
            }
        }
        System.out.println(left);
    }
}
0