結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2020-10-26 16:50:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 981 bytes
コンパイル時間 3,823 ms
コンパイル使用メモリ 83,700 KB
実行使用メモリ 68,240 KB
最終ジャッジ日時 2024-07-21 21:27:54
合計ジャッジ時間 69,582 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 839 ms
58,100 KB
testcase_01 AC 147 ms
41,244 KB
testcase_02 AC 1,982 ms
58,148 KB
testcase_03 AC 3,202 ms
58,748 KB
testcase_04 AC 4,129 ms
58,384 KB
testcase_05 AC 4,147 ms
59,260 KB
testcase_06 AC 4,076 ms
59,072 KB
testcase_07 AC 4,159 ms
57,868 KB
testcase_08 AC 4,015 ms
59,240 KB
testcase_09 AC 4,039 ms
58,112 KB
testcase_10 AC 3,755 ms
58,812 KB
testcase_11 AC 3,923 ms
59,004 KB
testcase_12 AC 3,550 ms
58,840 KB
testcase_13 AC 3,734 ms
58,444 KB
testcase_14 AC 3,865 ms
57,576 KB
testcase_15 AC 3,550 ms
58,300 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 865 ms
57,400 KB
testcase_19 AC 964 ms
59,144 KB
testcase_20 AC 916 ms
57,740 KB
testcase_21 AC 960 ms
57,664 KB
testcase_22 AC 816 ms
54,780 KB
testcase_23 AC 878 ms
54,824 KB
testcase_24 AC 130 ms
41,444 KB
testcase_25 AC 382 ms
47,244 KB
testcase_26 AC 264 ms
43,124 KB
testcase_27 AC 239 ms
43,080 KB
testcase_28 AC 1,012 ms
49,128 KB
testcase_29 AC 673 ms
48,440 KB
testcase_30 AC 395 ms
47,364 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[] sticks = new int[n];
        for (int i = 0; i < n; i++) {
            sticks[i] = sc.nextInt();
        }
        Arrays.sort(sticks);
        long k = sc.nextLong();
        if (n >= k) {
            System.out.println(sticks[n - (int)k]);
        } else {
            double left = sticks[0] / (double)(k / n + 1);
            double right = sticks[n - 1] + 1;
            for (int i = 0; i < 10000; i++) {
                double m = (left + right) / 2;
                long sum = 0;
                for (int j = 0; j < n; j++) {
                    sum += (long)(sticks[j] / m);
                }
                if (sum >= k) {
                    left = m;
                } else {
                    right = m;
                }
            }
            System.out.println(left);
        }
    }
}
0