結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー noriocnorioc
提出日時 2017-08-19 01:01:48
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 882 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 153,240 KB
実行使用メモリ 13,236 KB
最終ジャッジ日時 2024-06-12 21:40:04
合計ジャッジ時間 9,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
12,260 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 76 ms
6,944 KB
testcase_03 AC 139 ms
7,204 KB
testcase_04 AC 192 ms
12,760 KB
testcase_05 AC 193 ms
12,444 KB
testcase_06 AC 187 ms
12,164 KB
testcase_07 AC 203 ms
11,956 KB
testcase_08 AC 194 ms
11,828 KB
testcase_09 AC 198 ms
11,716 KB
testcase_10 AC 173 ms
8,952 KB
testcase_11 AC 183 ms
12,260 KB
testcase_12 AC 168 ms
7,480 KB
testcase_13 AC 179 ms
11,988 KB
testcase_14 AC 187 ms
11,560 KB
testcase_15 AC 167 ms
12,252 KB
testcase_16 AC 192 ms
12,652 KB
testcase_17 AC 201 ms
12,576 KB
testcase_18 AC 199 ms
12,308 KB
testcase_19 AC 203 ms
11,768 KB
testcase_20 AC 195 ms
11,396 KB
testcase_21 AC 193 ms
13,236 KB
testcase_22 AC 177 ms
7,824 KB
testcase_23 AC 185 ms
12,904 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 32 ms
6,944 KB
testcase_29 AC 17 ms
6,944 KB
testcase_30 AC 5 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.d(21): Warning: `long += double` is performing truncating conversion

ソースコード

diff #

import std.algorithm;
import std.array;
import std.conv;
import std.math;
import std.range;
import std.stdio;
import std.string;
import std.typecons;

int readint() {
    return readln.chomp.to!int;
}

int[] readints() {
    return readln.split.map!(to!int).array;
}

bool can(double len, long k, long[] ls) {
    long n = 0;
    foreach (x; ls) {
        n += x / len;
    }
    return n >= k;
}

double calc(long k, long[] ls) {
    double ans = 0;
    double lo = 0;
    double hi = 10 ^^ 9;
    foreach (_; 0 .. 100) {
        auto m = (lo + hi) / 2;
        if (can(m, k, ls)) {
            ans = max(ans, m);
            lo = m;
        }
        else {
            hi = m;
        }
    }
    return ans;
}

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

    auto ans = calc(k, ls);
    writefln("%.9f", ans);
}
0