結果

問題 No.1681 +-*
ユーザー phsplsphspls
提出日時 2022-10-20 01:50:17
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 13,079 ms
コンパイル使用メモリ 397,384 KB
実行使用メモリ 16,336 KB
最終ジャッジ日時 2024-06-30 01:01:43
合計ジャッジ時間 14,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 23 ms
15,080 KB
testcase_06 AC 25 ms
15,064 KB
testcase_07 AC 25 ms
15,232 KB
testcase_08 AC 30 ms
16,256 KB
testcase_09 AC 31 ms
16,256 KB
testcase_10 AC 30 ms
16,336 KB
testcase_11 AC 30 ms
16,256 KB
testcase_12 AC 30 ms
16,244 KB
testcase_13 AC 16 ms
9,088 KB
testcase_14 AC 31 ms
16,256 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 30 ms
16,128 KB
testcase_18 AC 31 ms
16,128 KB
testcase_19 AC 30 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const MOD: isize = 1e9 as isize + 7;

fn main() {
    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<isize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut dp = vec![vec![0isize; 2]; n];
    dp[0][1] = a[0];
    for i in 0..n-1 {
        dp[i+1][0] = (dp[i][0] * 3 + dp[i][1] * 2) % MOD;
        dp[i+1][1] = dp[i][1] * a[i+1] % MOD;
    }
    println!("{}", (dp[n-1][0] + dp[n-1][1]) % MOD);
}
0