結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-01 20:47:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 2,156 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 2,367 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 55,556 KB
最終ジャッジ日時 2024-11-08 12:59:07
合計ジャッジ時間 56,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,944 ms
55,388 KB
testcase_01 AC 151 ms
41,652 KB
testcase_02 AC 1,319 ms
51,740 KB
testcase_03 AC 1,819 ms
54,744 KB
testcase_04 AC 1,923 ms
55,316 KB
testcase_05 AC 1,926 ms
55,400 KB
testcase_06 AC 2,054 ms
55,516 KB
testcase_07 AC 2,139 ms
55,372 KB
testcase_08 AC 2,107 ms
55,284 KB
testcase_09 AC 1,952 ms
55,292 KB
testcase_10 AC 1,983 ms
55,048 KB
testcase_11 AC 1,961 ms
55,028 KB
testcase_12 AC 1,966 ms
54,784 KB
testcase_13 AC 1,693 ms
55,292 KB
testcase_14 AC 2,097 ms
55,556 KB
testcase_15 AC 1,949 ms
55,268 KB
testcase_16 AC 1,998 ms
55,324 KB
testcase_17 AC 1,960 ms
55,264 KB
testcase_18 AC 2,156 ms
55,036 KB
testcase_19 AC 2,093 ms
55,252 KB
testcase_20 AC 1,942 ms
55,372 KB
testcase_21 AC 1,970 ms
55,512 KB
testcase_22 AC 1,941 ms
55,244 KB
testcase_23 AC 2,065 ms
55,240 KB
testcase_24 AC 144 ms
41,816 KB
testcase_25 AC 373 ms
49,428 KB
testcase_26 AC 299 ms
48,160 KB
testcase_27 AC 278 ms
47,556 KB
testcase_28 AC 1,003 ms
50,892 KB
testcase_29 AC 659 ms
50,892 KB
testcase_30 AC 375 ms
49,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    double[] l = new double[n];
    for(int i = 0; i < n; i++) {
      l[i] = sc.nextDouble();
    }
    long k = sc.nextLong();
    double ans = 0;
    double left = 0;
    double right = 1000000001;
    for(int i = 0; i < 70; i++) {
      double med = (left + right) / 2;
      long t = 0;
      for(int j = 0; j < n; j++) {
        t += ((long)(l[j] / med));
      }
      if(t >= k) {
        ans = med;
        left = med;
      } else {
        right = med;
      }
    }
    System.out.println(ans);
  }
}
0