結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2021-03-08 09:04:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,192 ms / 5,000 ms
コード長 890 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 59,196 KB
最終ジャッジ日時 2024-11-08 13:34:17
合計ジャッジ時間 30,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 861 ms
58,872 KB
testcase_01 AC 137 ms
41,560 KB
testcase_02 AC 750 ms
48,972 KB
testcase_03 AC 1,027 ms
58,344 KB
testcase_04 AC 1,045 ms
57,564 KB
testcase_05 AC 1,135 ms
58,628 KB
testcase_06 AC 1,011 ms
58,608 KB
testcase_07 AC 1,163 ms
58,260 KB
testcase_08 AC 1,192 ms
58,044 KB
testcase_09 AC 1,152 ms
59,076 KB
testcase_10 AC 1,003 ms
58,128 KB
testcase_11 AC 1,063 ms
59,196 KB
testcase_12 AC 836 ms
58,860 KB
testcase_13 AC 1,138 ms
58,840 KB
testcase_14 AC 1,177 ms
57,116 KB
testcase_15 AC 1,125 ms
58,260 KB
testcase_16 AC 881 ms
57,396 KB
testcase_17 AC 879 ms
57,928 KB
testcase_18 AC 861 ms
57,444 KB
testcase_19 AC 945 ms
57,808 KB
testcase_20 AC 884 ms
58,160 KB
testcase_21 AC 898 ms
58,360 KB
testcase_22 AC 809 ms
55,120 KB
testcase_23 AC 809 ms
57,416 KB
testcase_24 AC 120 ms
40,184 KB
testcase_25 AC 247 ms
45,848 KB
testcase_26 AC 206 ms
43,216 KB
testcase_27 AC 197 ms
42,628 KB
testcase_28 AC 510 ms
48,528 KB
testcase_29 AC 373 ms
48,236 KB
testcase_30 AC 244 ms
46,420 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[] pieces = new int[n];
        for (int i = 0; i < n; i++) {
            pieces[i] = sc.nextInt();
        }
        Arrays.sort(pieces);
        long k = sc.nextLong();
        double min = pieces[n - 1] / (double)k;
        double max = pieces[n - 1] + 1;
        for (int i = 0; i < 100; i++) {
            double m = (min + max) / 2;
            long count = 0;
            for (int j = n - 1; j >= 0 && count < k && pieces[j] >= m; j--) {
                count += (long)(pieces[j] / m);
            }
            if (count >= k) {
                min = m;
            } else {
                max = m;
            }
        }
        System.out.println(java.math.BigDecimal.valueOf(min).toPlainString());
    }
}
0