結果

問題 No.1199 お菓子配り-2
ユーザー phsplsphspls
提出日時 2020-09-05 21:06:12
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 751 bytes
コンパイル時間 12,425 ms
コンパイル使用メモリ 378,228 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 20:08:49
合計ジャッジ時間 20,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 124 ms
5,376 KB
testcase_04 AC 29 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 20 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 79 ms
5,376 KB
testcase_17 AC 39 ms
5,376 KB
testcase_18 AC 83 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 59 ms
5,376 KB
testcase_21 AC 81 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
testcase_23 AC 16 ms
5,376 KB
testcase_24 AC 22 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 24 ms
5,376 KB
testcase_27 AC 20 ms
5,376 KB
testcase_28 AC 45 ms
5,376 KB
testcase_29 AC 40 ms
5,376 KB
testcase_30 AC 42 ms
5,376 KB
testcase_31 AC 44 ms
5,376 KB
testcase_32 AC 39 ms
5,376 KB
testcase_33 AC 45 ms
5,376 KB
testcase_34 AC 47 ms
5,376 KB
testcase_35 AC 42 ms
5,376 KB
testcase_36 AC 43 ms
5,376 KB
testcase_37 AC 44 ms
5,376 KB
testcase_38 AC 46 ms
5,376 KB
testcase_39 AC 44 ms
5,376 KB
testcase_40 AC 45 ms
5,376 KB
testcase_41 AC 45 ms
5,376 KB
testcase_42 AC 45 ms
5,376 KB
testcase_43 AC 40 ms
5,376 KB
testcase_44 AC 41 ms
5,376 KB
testcase_45 AC 39 ms
5,376 KB
testcase_46 AC 42 ms
5,376 KB
testcase_47 AC 42 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::max;

fn main() {
    let mut nm = String::new();
    std::io::stdin().read_line(&mut nm).ok();
    let nm: Vec<i64> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nm[0];
    let mut a: Vec<i64> = vec![];
    for _ in 0..n {
        let mut tempa = String::new();
        std::io::stdin().read_line(&mut tempa).ok();
        let tempa: i64 = tempa.trim().split_whitespace().map(|s| s.parse::<i64>().unwrap()).sum::<i64>();
        a.push(tempa);
    }

    let mut dp: Vec<Vec<i64>> = vec![vec![0; n as usize + 1]; 2];
    for i in 0..(n as usize) {
        dp[0][i+1] = max(dp[0][i], dp[1][i] + a[i]);
        dp[1][i+1] = max(dp[1][i], dp[0][i] - a[i]);
    }
    println!("{}", dp[0][n as usize]);
}
0