結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー kokatsukokatsu
提出日時 2022-06-18 00:18:43
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 359 ms / 3,000 ms
コード長 756 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 208,488 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 15:30:35
合計ジャッジ時間 12,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 64 ms
6,812 KB
testcase_02 AC 255 ms
6,940 KB
testcase_03 AC 174 ms
6,944 KB
testcase_04 AC 45 ms
6,940 KB
testcase_05 AC 218 ms
6,940 KB
testcase_06 AC 345 ms
6,944 KB
testcase_07 AC 339 ms
6,940 KB
testcase_08 AC 351 ms
6,940 KB
testcase_09 AC 345 ms
6,944 KB
testcase_10 AC 349 ms
6,940 KB
testcase_11 AC 348 ms
6,940 KB
testcase_12 AC 345 ms
6,940 KB
testcase_13 AC 350 ms
6,940 KB
testcase_14 AC 346 ms
6,940 KB
testcase_15 AC 346 ms
6,940 KB
testcase_16 AC 348 ms
6,940 KB
testcase_17 AC 350 ms
6,940 KB
testcase_18 AC 343 ms
6,940 KB
testcase_19 AC 346 ms
6,940 KB
testcase_20 AC 345 ms
6,940 KB
testcase_21 AC 358 ms
6,944 KB
testcase_22 AC 354 ms
6,944 KB
testcase_23 AC 359 ms
6,940 KB
testcase_24 AC 345 ms
6,940 KB
testcase_25 AC 339 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N;
    readf("%d\n", N);

    bool S(long v, long t, long m, long l) {
        long C = 36;

        l *= C * C * m * (10 ^^ 2);
        long r = C * m * v * t + v * v * 5;

        return l >= r;
    }

    foreach (_; 0 .. N) {
        long T1, T2, mu1, mu2, L1, L2;
        readf("%d.%d %d.%d %d.%d\n", T1, T2, mu1, mu2, L1, L2);

        long T = T1 * 100 + T2;
        long mu = mu1 * 100 + mu2;
        long L = L1 * 100 + L2;

        long ok, ng = 6_000_000;
        while (ng - ok > 1) {
            long mid = (ok + ng) / 2;
            (S(mid, T, mu, L) ? ok : ng) = mid;
        }

        long I = ok / 1000;
        auto F = format("%03d", ok % 1000);
        F.popBack;
        writeln(I, ".", F);
    }
}
0