結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2021-11-10 10:51:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,742 ms / 5,000 ms
コード長 1,625 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 77,908 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-11-08 13:36:36
合計ジャッジ時間 40,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
53,432 KB
testcase_01 AC 55 ms
37,576 KB
testcase_02 AC 786 ms
46,736 KB
testcase_03 AC 1,316 ms
48,772 KB
testcase_04 AC 1,742 ms
47,660 KB
testcase_05 AC 1,704 ms
47,932 KB
testcase_06 AC 1,699 ms
47,872 KB
testcase_07 AC 1,723 ms
51,108 KB
testcase_08 AC 1,719 ms
51,356 KB
testcase_09 AC 1,720 ms
51,436 KB
testcase_10 AC 1,558 ms
47,640 KB
testcase_11 AC 1,637 ms
47,764 KB
testcase_12 AC 1,516 ms
47,416 KB
testcase_13 AC 1,596 ms
51,104 KB
testcase_14 AC 1,657 ms
51,240 KB
testcase_15 AC 1,506 ms
48,888 KB
testcase_16 AC 1,729 ms
47,792 KB
testcase_17 AC 1,718 ms
47,588 KB
testcase_18 AC 1,703 ms
47,684 KB
testcase_19 AC 1,735 ms
51,232 KB
testcase_20 AC 1,709 ms
51,536 KB
testcase_21 AC 1,288 ms
51,552 KB
testcase_22 AC 1,328 ms
47,540 KB
testcase_23 AC 1,320 ms
47,908 KB
testcase_24 AC 54 ms
37,288 KB
testcase_25 AC 129 ms
39,712 KB
testcase_26 AC 118 ms
40,228 KB
testcase_27 AC 104 ms
39,764 KB
testcase_28 AC 463 ms
44,980 KB
testcase_29 AC 270 ms
42,440 KB
testcase_30 AC 130 ms
39,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        long k = sc.nextLong();
        double left = 1.0 / k;
        double right = Integer.MAX_VALUE;
        for (int i = 0; i < 1000; i++) {
            long sum = 0;
            double m = (left + right) / 2;
            for (int j = 0; j < n && sum < k; j++) {
                sum += (long)(values[j] / m);
            }
            if (sum >= k) {
                left = m;
            } else {
                right = m;
            }
        }
        System.out.println(new java.math.BigDecimal(left).toPlainString());
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0