結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー te-shte-sh
提出日時 2017-01-23 14:48:16
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 613 ms / 5,000 ms
コード長 594 bytes
コンパイル時間 2,869 ms
コンパイル使用メモリ 159,616 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-12 06:33:04
合計ジャッジ時間 11,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,884 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 224 ms
5,580 KB
testcase_03 AC 429 ms
8,416 KB
testcase_04 AC 374 ms
12,892 KB
testcase_05 AC 384 ms
12,728 KB
testcase_06 AC 298 ms
12,856 KB
testcase_07 AC 611 ms
12,808 KB
testcase_08 AC 600 ms
12,904 KB
testcase_09 AC 613 ms
12,928 KB
testcase_10 AC 325 ms
9,272 KB
testcase_11 AC 368 ms
12,536 KB
testcase_12 AC 255 ms
8,848 KB
testcase_13 AC 552 ms
12,376 KB
testcase_14 AC 576 ms
12,572 KB
testcase_15 AC 519 ms
11,808 KB
testcase_16 AC 152 ms
12,852 KB
testcase_17 AC 110 ms
12,724 KB
testcase_18 AC 88 ms
12,852 KB
testcase_19 AC 119 ms
12,920 KB
testcase_20 AC 93 ms
12,796 KB
testcase_21 AC 93 ms
12,924 KB
testcase_22 AC 75 ms
9,400 KB
testcase_23 AC 84 ms
12,532 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 13 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 96 ms
5,376 KB
testcase_29 AC 47 ms
5,376 KB
testcase_30 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.math;      // math functions

const real eps = 1e-10;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto li = readln.split.to!(real[]);
  auto k = readln.chomp.to!size_t;

  li.sort!"a > b";

  bool canCreate(real a, real _) {
    auto i = size_t(0);
    foreach (l; li) {
      if (l < a) break;
      i += (l / a).floor.to!size_t;
      if (i >= k) return true;
    }
    return false;
  }
  
  auto r = iota(eps, li[0] + eps, eps).assumeSorted!canCreate.lowerBound(0.to!real);
  writefln("%.10f", r.back);
}
0