結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー wdkkouwdkkou
提出日時 2019-04-06 00:13:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,116 ms / 5,000 ms
コード長 1,303 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 60,076 KB
最終ジャッジ日時 2024-11-08 12:52:21
合計ジャッジ時間 30,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,069 ms
58,640 KB
testcase_01 AC 140 ms
41,552 KB
testcase_02 AC 713 ms
49,908 KB
testcase_03 AC 946 ms
58,916 KB
testcase_04 AC 1,036 ms
60,056 KB
testcase_05 AC 1,114 ms
59,640 KB
testcase_06 AC 1,069 ms
59,388 KB
testcase_07 AC 1,116 ms
59,124 KB
testcase_08 AC 1,070 ms
57,952 KB
testcase_09 AC 1,095 ms
60,076 KB
testcase_10 AC 988 ms
59,504 KB
testcase_11 AC 1,060 ms
59,528 KB
testcase_12 AC 1,030 ms
59,456 KB
testcase_13 AC 988 ms
59,032 KB
testcase_14 AC 1,084 ms
58,344 KB
testcase_15 AC 1,018 ms
59,496 KB
testcase_16 AC 1,104 ms
59,828 KB
testcase_17 AC 1,105 ms
59,808 KB
testcase_18 AC 1,091 ms
59,708 KB
testcase_19 AC 1,116 ms
59,520 KB
testcase_20 AC 1,071 ms
59,600 KB
testcase_21 AC 1,109 ms
59,236 KB
testcase_22 AC 1,034 ms
59,320 KB
testcase_23 AC 1,090 ms
59,128 KB
testcase_24 AC 125 ms
40,476 KB
testcase_25 AC 226 ms
45,632 KB
testcase_26 AC 203 ms
43,060 KB
testcase_27 AC 199 ms
42,680 KB
testcase_28 AC 505 ms
48,168 KB
testcase_29 AC 349 ms
47,808 KB
testcase_30 AC 236 ms
45,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long[] l = new long[n];
        long max = 0;
        for (int i = 0; i < n; i++) {
            l[i] = sc.nextLong();
            max = Math.max(max, l[i]);
        }
        long k = sc.nextLong();
        // System.out.println(Arrays.toString(l));
        double ans = binSearch(0, (double) max + 1, k, l, n);
        // System.out.println(ans);
        System.out.printf("%.12f%n", ans);
    }
    public static double binSearch(double ok, double ng, long k, long[] l, int n) {
        for (int i = 0; i < 100; i++) {
            double mid = (ok + ng) / 2.0;
            // System.out.printf("ok = %f%n", ok);
            // System.out.printf("ng = %f%n", ng);
            // System.out.printf("mid = %f%n", mid);
            if (solve(mid, k, l, n)) {
                ok = mid;
            } else {
                ng = mid;
            }
        }
        return ok;
    }
    public static boolean solve(double x, long k, long[] l, int n) {
        long cnt = 0;
        for (int i = 0; i < n; i++) {
            cnt += l[i] / x;
        }
        if (cnt < k) {
            return false;
        }
        return true;
    }
}
0