結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2020-10-26 15:52:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 980 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 68,188 KB
最終ジャッジ日時 2024-07-21 21:24:54
合計ジャッジ時間 35,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 877 ms
57,572 KB
testcase_01 AC 140 ms
41,112 KB
testcase_02 AC 892 ms
56,620 KB
testcase_03 AC 1,311 ms
58,528 KB
testcase_04 AC 1,326 ms
58,696 KB
testcase_05 AC 1,462 ms
58,872 KB
testcase_06 AC 1,431 ms
58,760 KB
testcase_07 AC 1,326 ms
58,008 KB
testcase_08 AC 1,241 ms
58,128 KB
testcase_09 AC 1,330 ms
57,672 KB
testcase_10 AC 1,330 ms
58,200 KB
testcase_11 AC 1,353 ms
58,544 KB
testcase_12 AC 1,277 ms
58,152 KB
testcase_13 AC 1,406 ms
58,304 KB
testcase_14 AC 1,441 ms
58,972 KB
testcase_15 AC 1,342 ms
58,412 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 880 ms
55,028 KB
testcase_19 AC 905 ms
57,956 KB
testcase_20 AC 894 ms
57,500 KB
testcase_21 AC 923 ms
57,808 KB
testcase_22 AC 836 ms
53,620 KB
testcase_23 AC 896 ms
57,080 KB
testcase_24 AC 143 ms
41,408 KB
testcase_25 AC 285 ms
46,568 KB
testcase_26 AC 237 ms
43,508 KB
testcase_27 AC 228 ms
42,644 KB
testcase_28 AC 609 ms
48,868 KB
testcase_29 AC 435 ms
47,736 KB
testcase_30 AC 305 ms
47,360 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 < 1000; 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