結果

問題 No.999 てん vs. ほむ
ユーザー tabataba
提出日時 2024-08-02 13:37:12
言語 Rust
(1.77.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 11,977 ms
コンパイル使用メモリ 402,732 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-02 13:37:33
合計ジャッジ時間 17,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 10 ms
6,940 KB
testcase_09 AC 259 ms
6,944 KB
testcase_10 AC 84 ms
6,940 KB
testcase_11 AC 51 ms
6,940 KB
testcase_12 AC 110 ms
6,944 KB
testcase_13 AC 273 ms
6,940 KB
testcase_14 AC 271 ms
6,940 KB
testcase_15 AC 272 ms
6,940 KB
testcase_16 AC 296 ms
6,940 KB
testcase_17 AC 255 ms
6,940 KB
testcase_18 AC 242 ms
6,940 KB
testcase_19 AC 249 ms
6,940 KB
testcase_20 AC 247 ms
6,940 KB
testcase_21 AC 224 ms
6,944 KB
testcase_22 AC 205 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    proconio::input! {
        n: usize,
        a: [i64; n*2],
    }
    let points = a.chunks_exact(2).map(|x| x[1] - x[0]).collect::<Vec<_>>();
    eprintln!("{points:?}");
    let mut lpoint = 0;
    let mut rpoint = points.iter().sum::<i64>();
    let mut point_max = lpoint + rpoint;
    for i in 0..points.len() {
        lpoint -= points[i];
        rpoint -= points[i];
        point_max = std::cmp::max(point_max, lpoint + rpoint);
    }
    println!("{}", point_max);
}
0