結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー parukiparuki
提出日時 2024-03-02 23:46:35
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 1,028 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 64,660 KB
最終ジャッジ日時 2024-09-29 16:29:09
合計ジャッジ時間 10,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
39,552 KB
testcase_01 AC 539 ms
57,408 KB
testcase_02 AC 201 ms
50,200 KB
testcase_03 AC 189 ms
49,808 KB
testcase_04 AC 219 ms
62,256 KB
testcase_05 AC 224 ms
64,404 KB
testcase_06 AC 208 ms
61,272 KB
testcase_07 AC 216 ms
63,756 KB
testcase_08 AC 207 ms
60,020 KB
testcase_09 AC 227 ms
64,268 KB
testcase_10 AC 227 ms
64,012 KB
testcase_11 AC 231 ms
61,532 KB
testcase_12 AC 222 ms
64,276 KB
testcase_13 AC 226 ms
64,400 KB
testcase_14 AC 201 ms
62,528 KB
testcase_15 AC 202 ms
62,612 KB
testcase_16 AC 206 ms
62,864 KB
testcase_17 AC 205 ms
62,732 KB
testcase_18 AC 203 ms
62,604 KB
testcase_19 AC 203 ms
62,608 KB
testcase_20 AC 204 ms
62,604 KB
testcase_21 AC 202 ms
62,604 KB
testcase_22 AC 203 ms
62,608 KB
testcase_23 AC 203 ms
64,652 KB
testcase_24 AC 221 ms
63,888 KB
testcase_25 AC 234 ms
59,876 KB
testcase_26 AC 217 ms
63,504 KB
testcase_27 AC 224 ms
64,660 KB
testcase_28 AC 224 ms
62,628 KB
testcase_29 AC 245 ms
64,548 KB
testcase_30 AC 220 ms
62,636 KB
testcase_31 AC 223 ms
62,632 KB
testcase_32 AC 221 ms
62,760 KB
testcase_33 AC 221 ms
62,988 KB
testcase_34 AC 226 ms
62,884 KB
testcase_35 AC 1,028 ms
63,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Main(require("fs").readFileSync("/dev/stdin", "utf8").split("\n"));

function Main(lines) {
    const T = parseInt(lines[0]);
    for(let i=0; i<T; ++i) {
        const N = parseInt(lines[i*2+1]);
        const A = lines[i*2+2].split(" ").map(Number);

        // (l, r]
        let l = -1;
        let r = 1000000000;
        while(r-l>1) {
            let m = Math.floor((l+r)/2);
            let pre = -1;
            let ok = true;
            for(let i=0; i<N; ++i) {
                let cur = A[i] + m * (i+1);
                if(pre>=cur) {
                    ok = false;
                    break;
                }
                pre = cur;
            }
            if(ok) {
                r = m;
            } else {
                l = m;
            }
        }
        console.log(r);
    }
}
0