結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2020-10-26 17:01:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 59,864 KB
最終ジャッジ日時 2024-07-21 21:28:57
合計ジャッジ時間 33,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 838 ms
58,140 KB
testcase_01 AC 135 ms
41,300 KB
testcase_02 AC 865 ms
56,432 KB
testcase_03 AC 1,190 ms
58,232 KB
testcase_04 AC 1,417 ms
58,304 KB
testcase_05 AC 1,432 ms
58,192 KB
testcase_06 AC 1,431 ms
58,920 KB
testcase_07 AC 1,382 ms
57,976 KB
testcase_08 AC 1,262 ms
58,120 KB
testcase_09 AC 1,339 ms
59,116 KB
testcase_10 AC 1,327 ms
58,420 KB
testcase_11 AC 1,319 ms
58,976 KB
testcase_12 AC 1,334 ms
58,408 KB
testcase_13 AC 1,309 ms
58,096 KB
testcase_14 AC 1,373 ms
57,188 KB
testcase_15 AC 1,264 ms
58,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 858 ms
57,492 KB
testcase_19 AC 866 ms
58,068 KB
testcase_20 AC 895 ms
57,844 KB
testcase_21 AC 870 ms
58,064 KB
testcase_22 AC 826 ms
54,056 KB
testcase_23 AC 844 ms
54,840 KB
testcase_24 AC 128 ms
41,156 KB
testcase_25 AC 284 ms
46,940 KB
testcase_26 AC 214 ms
43,444 KB
testcase_27 AC 208 ms
42,668 KB
testcase_28 AC 558 ms
48,104 KB
testcase_29 AC 475 ms
48,148 KB
testcase_30 AC 291 ms
46,964 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] / (double)(k / n - 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