結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2023-01-26 11:58:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,834 ms / 5,000 ms
コード長 2,100 bytes
コンパイル時間 2,669 ms
コンパイル使用メモリ 84,916 KB
実行使用メモリ 56,704 KB
最終ジャッジ日時 2024-06-27 07:30:41
合計ジャッジ時間 42,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 443 ms
56,704 KB
testcase_01 AC 71 ms
38,332 KB
testcase_02 AC 822 ms
47,176 KB
testcase_03 AC 1,305 ms
47,740 KB
testcase_04 AC 1,694 ms
48,148 KB
testcase_05 AC 1,716 ms
47,836 KB
testcase_06 AC 1,690 ms
47,848 KB
testcase_07 AC 1,775 ms
52,892 KB
testcase_08 AC 1,834 ms
54,344 KB
testcase_09 AC 1,788 ms
53,856 KB
testcase_10 AC 1,573 ms
47,584 KB
testcase_11 AC 1,649 ms
47,992 KB
testcase_12 AC 1,501 ms
47,544 KB
testcase_13 AC 1,640 ms
52,640 KB
testcase_14 AC 1,778 ms
54,076 KB
testcase_15 AC 1,486 ms
49,028 KB
testcase_16 AC 1,702 ms
49,996 KB
testcase_17 AC 1,712 ms
48,040 KB
testcase_18 AC 1,691 ms
47,860 KB
testcase_19 AC 1,829 ms
54,384 KB
testcase_20 AC 1,739 ms
53,884 KB
testcase_21 AC 1,779 ms
53,812 KB
testcase_22 AC 1,556 ms
49,844 KB
testcase_23 AC 1,602 ms
47,736 KB
testcase_24 AC 53 ms
37,776 KB
testcase_25 AC 136 ms
39,968 KB
testcase_26 AC 105 ms
39,356 KB
testcase_27 AC 92 ms
39,128 KB
testcase_28 AC 481 ms
45,412 KB
testcase_29 AC 283 ms
42,500 KB
testcase_30 AC 141 ms
39,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] lengths = new int[n];
        for (int i = 0; i < n; i++) {
            lengths[i] = sc.nextInt();
        }
        long k = sc.nextLong();
        double left = 0;
        double right = Integer.MAX_VALUE;
        for (int i = 0; i < 1000; i++) {
            double m = (left + right) / 2;
            double sum = 0;
            for (int j = 0; j < n && sum <= k; j++) {
                sum += Math.floor(lengths[j] / m);
            }
            if (sum >= k) {
                left = m;
            } else {
                right = m;
            }
        }
        System.out.println(new java.math.BigDecimal(left).toPlainString());
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0