結果

問題 No.2648 [Cherry 6th Tune D] 一次元の馬
ユーザー phsplsphspls
提出日時 2024-02-23 21:43:07
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 12,455 ms
コンパイル使用メモリ 386,864 KB
実行使用メモリ 10,280 KB
最終ジャッジ日時 2024-09-29 06:00:55
合計ジャッジ時間 16,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 109 ms
6,820 KB
testcase_02 AC 48 ms
6,816 KB
testcase_03 AC 45 ms
6,816 KB
testcase_04 AC 48 ms
6,912 KB
testcase_05 AC 51 ms
9,516 KB
testcase_06 AC 49 ms
6,816 KB
testcase_07 AC 49 ms
8,832 KB
testcase_08 AC 47 ms
6,816 KB
testcase_09 AC 52 ms
9,856 KB
testcase_10 AC 48 ms
9,600 KB
testcase_11 AC 48 ms
6,820 KB
testcase_12 AC 49 ms
8,920 KB
testcase_13 AC 49 ms
8,832 KB
testcase_14 AC 51 ms
10,112 KB
testcase_15 AC 51 ms
10,280 KB
testcase_16 AC 50 ms
10,156 KB
testcase_17 AC 52 ms
10,112 KB
testcase_18 AC 52 ms
10,112 KB
testcase_19 AC 51 ms
10,224 KB
testcase_20 AC 50 ms
10,204 KB
testcase_21 AC 51 ms
10,192 KB
testcase_22 AC 53 ms
10,200 KB
testcase_23 AC 51 ms
10,112 KB
testcase_24 AC 55 ms
10,272 KB
testcase_25 AC 50 ms
6,820 KB
testcase_26 AC 53 ms
10,112 KB
testcase_27 AC 52 ms
8,760 KB
testcase_28 AC 55 ms
10,240 KB
testcase_29 AC 53 ms
8,960 KB
testcase_30 AC 51 ms
10,200 KB
testcase_31 AC 52 ms
10,192 KB
testcase_32 AC 53 ms
10,188 KB
testcase_33 AC 52 ms
9,988 KB
testcase_34 AC 53 ms
10,240 KB
testcase_35 AC 311 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const INF: u128 = 1u128 << 60;

fn main() {
    let mut t = String::new();
    std::io::stdin().read_line(&mut t).ok();
    let t: usize = t.trim().parse().unwrap();
    for _ in 0..t {
        let mut n = String::new();
        std::io::stdin().read_line(&mut n).ok();
        let n: usize = n.trim().parse().unwrap();
        let mut a = String::new();
        std::io::stdin().read_line(&mut a).ok();
        let a: Vec<u128> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

        let mut lower = 0u128;
        let mut upper = INF;
        while upper > lower {
            let middle = (upper + lower) / 2;
            let next_a = (0..n).map(|i| a[i] + (i as u128 + 1) * middle).collect::<Vec<_>>();
            if next_a.windows(2).all(|lr| lr[0] < lr[1]) {
                upper = middle;
            } else {
                lower = middle + 1;
            }
        }
        println!("{}", upper);
    }
}
0