結果

問題 No.1199 お菓子配り-2
ユーザー StrorkisStrorkis
提出日時 2020-08-28 22:52:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 818 bytes
コンパイル時間 13,679 ms
コンパイル使用メモリ 401,796 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-14 03:42:38
合計ジャッジ時間 19,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 18 ms
6,820 KB
testcase_04 AC 45 ms
9,856 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 22 ms
6,816 KB
testcase_08 AC 31 ms
6,820 KB
testcase_09 AC 19 ms
6,816 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 15 ms
6,820 KB
testcase_12 AC 14 ms
6,820 KB
testcase_13 AC 5 ms
6,820 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 29 ms
6,816 KB
testcase_17 AC 15 ms
6,816 KB
testcase_18 AC 31 ms
6,816 KB
testcase_19 AC 9 ms
6,820 KB
testcase_20 AC 54 ms
9,728 KB
testcase_21 AC 33 ms
6,816 KB
testcase_22 AC 20 ms
6,820 KB
testcase_23 AC 25 ms
6,820 KB
testcase_24 AC 37 ms
9,472 KB
testcase_25 AC 6 ms
6,820 KB
testcase_26 AC 38 ms
7,296 KB
testcase_27 AC 31 ms
6,816 KB
testcase_28 AC 72 ms
11,648 KB
testcase_29 AC 70 ms
11,648 KB
testcase_30 AC 70 ms
11,648 KB
testcase_31 AC 70 ms
11,648 KB
testcase_32 AC 69 ms
11,648 KB
testcase_33 AC 70 ms
11,648 KB
testcase_34 AC 70 ms
11,648 KB
testcase_35 AC 70 ms
11,648 KB
testcase_36 AC 69 ms
11,648 KB
testcase_37 AC 70 ms
11,648 KB
testcase_38 AC 70 ms
11,520 KB
testcase_39 AC 70 ms
11,776 KB
testcase_40 AC 70 ms
11,648 KB
testcase_41 AC 69 ms
11,648 KB
testcase_42 AC 70 ms
11,648 KB
testcase_43 AC 69 ms
11,648 KB
testcase_44 AC 69 ms
11,776 KB
testcase_45 AC 70 ms
11,648 KB
testcase_46 AC 69 ms
11,648 KB
testcase_47 AC 70 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::max;

fn main() {
    let (n, _m): (usize, usize) = {
        let mut buf = String::new();
        std::io::stdin().read_line(&mut buf).unwrap();
        let mut iter = buf.split_whitespace();
        (
            iter.next().unwrap().parse().unwrap(),
            iter.next().unwrap().parse().unwrap(),
        )
    };

    let mut a: Vec<Vec<i64>> = Vec::with_capacity(n);
    for _ in 0..n {
        let mut buf = String::new();
        std::io::stdin().read_line(&mut buf).unwrap();
        let iter = buf.split_whitespace();
        a.push(iter.map(|x| x.parse().unwrap()).collect())
    }

    let (mut odd, mut even) = (0, 0);
    for i in 0..n {
        let sum: i64 = a[i].iter().sum();
        odd = max(odd, even + sum);
        even = max(even, odd - sum);
    }

    println!("{}", odd);
}
0