結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nobuta05nobuta05
提出日時 2022-04-13 05:47:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 531 ms / 5,000 ms
コード長 1,552 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 157,288 KB
実行使用メモリ 16,420 KB
最終ジャッジ日時 2024-06-22 14:55:21
合計ジャッジ時間 13,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
13,964 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 182 ms
6,940 KB
testcase_03 AC 364 ms
9,288 KB
testcase_04 AC 484 ms
15,208 KB
testcase_05 AC 485 ms
15,644 KB
testcase_06 AC 460 ms
16,420 KB
testcase_07 AC 516 ms
12,860 KB
testcase_08 AC 531 ms
12,744 KB
testcase_09 AC 439 ms
12,844 KB
testcase_10 AC 440 ms
9,516 KB
testcase_11 AC 458 ms
15,976 KB
testcase_12 AC 402 ms
9,216 KB
testcase_13 AC 474 ms
12,792 KB
testcase_14 AC 499 ms
12,748 KB
testcase_15 AC 364 ms
13,416 KB
testcase_16 AC 389 ms
15,296 KB
testcase_17 AC 356 ms
16,420 KB
testcase_18 AC 341 ms
15,588 KB
testcase_19 AC 364 ms
13,140 KB
testcase_20 AC 348 ms
12,724 KB
testcase_21 AC 348 ms
12,904 KB
testcase_22 AC 320 ms
9,472 KB
testcase_23 AC 327 ms
15,540 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 10 ms
6,940 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 77 ms
6,944 KB
testcase_29 AC 40 ms
6,940 KB
testcase_30 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.d(60): Warning: `long += real` is performing truncating conversion

ソースコード

diff #

import std.stdio, std.string, std.conv;
import std.algorithm, std.math;
import std.range;
import std.container.rbtree, std.container.dlist;
import std.container.binaryheap, std.container.array;
import std.typecons;
import std.meta;

// import std.meta;

alias mstring = char[];
const long INF = 1L << 60L;
// const long INF = 1L << 30L;
const long mod = 1_000_000_000 + 7;
// const long mod = 998_244_353L;

void chmin (T)(ref T x, T y) {
  x = min(x, y);
}

void chmax (T)(ref T x, T y) {
  x = max(x, y);
}

// 単一の数値を取得
// readln.chomp.to!int;
//  or
// int a;
// readf("%s\n", a);

// 複数の数値を取得(可変数個の場合推奨)
// readln.chomp.split.map!(to!long).array

// 複数の数値を取得(固定数個の場合、推奨)
// int a, b;
// readf("%s %s\n", &a, &b);

// インデントを一個ずらして複数の数値を取得(累積和とかで1-indexedの方が良い時がある)
// long[] vs = readln.chomp.split.map!(to!long).array;
// vs = [0L] ~ vs;

// 小数点は以下で指定
// double ret = 10.0;
// writefln("%.12f", ret);

// 配列の最後の要素は arr[$-1] でアクセスできる

void main () {
  int N = readln.chomp.to!int;
  auto ls = readln.chomp.split.map!(to!real).array;
  long K = readln.chomp.to!long;

  real ac = 0;
  real wa = cast(real) INF;
  while (wa - ac > 0.0000000001) {
    real wj = (ac + wa) / 2.0;

    long cnt = 0;
    foreach (i; 0 .. N)
      cnt += floor(ls[i] / wj);

    if (cnt >= K)
      ac = wj;
    else
      wa = wj;
  }

  writefln("%.12f", ac);
}
0