結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tentententen
提出日時 2023-06-12 18:04:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,614 ms / 5,000 ms
コード長 2,101 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 85,088 KB
実行使用メモリ 55,780 KB
最終ジャッジ日時 2024-06-11 19:06:41
合計ジャッジ時間 36,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
55,780 KB
testcase_01 AC 50 ms
37,736 KB
testcase_02 AC 703 ms
47,104 KB
testcase_03 AC 1,161 ms
47,724 KB
testcase_04 AC 1,487 ms
47,936 KB
testcase_05 AC 1,524 ms
47,572 KB
testcase_06 AC 1,511 ms
47,884 KB
testcase_07 AC 1,592 ms
54,372 KB
testcase_08 AC 1,614 ms
54,196 KB
testcase_09 AC 1,556 ms
53,800 KB
testcase_10 AC 1,364 ms
47,548 KB
testcase_11 AC 1,450 ms
49,848 KB
testcase_12 AC 1,319 ms
49,864 KB
testcase_13 AC 1,492 ms
54,180 KB
testcase_14 AC 1,504 ms
54,140 KB
testcase_15 AC 1,341 ms
48,860 KB
testcase_16 AC 1,491 ms
47,640 KB
testcase_17 AC 1,558 ms
47,996 KB
testcase_18 AC 1,476 ms
47,524 KB
testcase_19 AC 1,568 ms
54,516 KB
testcase_20 AC 1,588 ms
53,812 KB
testcase_21 AC 1,238 ms
54,576 KB
testcase_22 AC 1,225 ms
47,516 KB
testcase_23 AC 1,147 ms
47,536 KB
testcase_24 AC 48 ms
37,620 KB
testcase_25 AC 119 ms
39,952 KB
testcase_26 AC 109 ms
40,120 KB
testcase_27 AC 76 ms
39,144 KB
testcase_28 AC 415 ms
45,316 KB
testcase_29 AC 230 ms
42,520 KB
testcase_30 AC 116 ms
39,684 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[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        long k = sc.nextLong();
        double left = 0;
        double right = Integer.MAX_VALUE / 2;
        for (int i = 0; i < 1000; i++) {
            double m = (left + right) / 2;
            long count = 0;
            for (int j = 0; j < n && count < k; j++) {
                count += (long)(values[j] / m);
            }
            if (count >= 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