結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー te-shte-sh
提出日時 2016-09-05 13:20:24
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,198 ms / 5,000 ms
コード長 709 bytes
コンパイル時間 2,837 ms
コンパイル使用メモリ 161,232 KB
実行使用メモリ 9,788 KB
最終ジャッジ日時 2024-06-12 04:10:17
合計ジャッジ時間 25,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
9,696 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 431 ms
5,376 KB
testcase_03 AC 833 ms
6,116 KB
testcase_04 AC 1,079 ms
9,788 KB
testcase_05 AC 1,073 ms
9,784 KB
testcase_06 AC 1,041 ms
9,652 KB
testcase_07 AC 1,198 ms
9,600 KB
testcase_08 AC 1,184 ms
9,728 KB
testcase_09 AC 1,072 ms
9,600 KB
testcase_10 AC 955 ms
6,464 KB
testcase_11 AC 1,034 ms
9,464 KB
testcase_12 AC 899 ms
6,292 KB
testcase_13 AC 1,091 ms
9,432 KB
testcase_14 AC 1,119 ms
9,636 KB
testcase_15 AC 897 ms
9,312 KB
testcase_16 AC 1,027 ms
9,780 KB
testcase_17 AC 1,018 ms
9,656 KB
testcase_18 AC 888 ms
9,656 KB
testcase_19 AC 967 ms
9,732 KB
testcase_20 AC 754 ms
9,724 KB
testcase_21 AC 651 ms
9,596 KB
testcase_22 AC 596 ms
6,332 KB
testcase_23 AC 741 ms
9,468 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 21 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 176 ms
5,376 KB
testcase_29 AC 85 ms
5,376 KB
testcase_30 AC 22 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range, std.bitmanip;
import std.numeric, std.math, std.bigint, std.random, core.bitop;
import std.string, std.conv, std.stdio, std.typecons;

void main()
{
  auto n = readln.chomp.to!long;
  auto li = readln.split.map!(to!long);
  auto k = readln.chomp.to!long;

  auto maxL = li.reduce!(max);

  bool calc(real x, real _) {
    long c = 0;
    foreach (l; li) {
      auto d = (l / x).floor;
      if (d >= long.max || d >= long.max - c || c + d >= k)
        return true;
      c += d.to!long;
    }
    return c >= k;
  }

  auto eps = 10.to!real ^^ (-10);
  auto r = iota(eps, maxL, eps).assumeSorted!(calc).lowerBound(0);
  writefln("%.9f", r.back);
}
0