結果

問題 No.523 LED
ユーザー phsplsphspls
提出日時 2020-07-05 17:21:37
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 12,029 ms
コンパイル使用メモリ 393,836 KB
実行使用メモリ 79,960 KB
最終ジャッジ日時 2024-09-22 15:01:40
合計ジャッジ時間 13,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 90 ms
79,952 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 18 ms
16,888 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 89 ms
79,960 KB
testcase_19 AC 33 ms
29,556 KB
testcase_20 AC 30 ms
26,376 KB
testcase_21 AC 69 ms
60,316 KB
testcase_22 AC 76 ms
67,248 KB
testcase_23 AC 76 ms
67,424 KB
testcase_24 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();

    const DIVISOR: usize = 1_000_000_007;
    let mut dp: Vec<usize> = vec![0; n+1];
    dp[1] = 1;
    for i in 2..=n {
        //1回1回押す -> (2 * (i-1) + 1) C 2
        //2連打 -> (2 * (i-1) + 1)
        dp[i] = (2 * (i-1) + 1) * dp[i-1];
        dp[i] %= DIVISOR;
        let mut temp: usize = (2 * (i-1) + 1) * 2 * (i-1) / 2;
        temp %= DIVISOR;
        temp *= dp[i-1];
        temp %= DIVISOR;
        dp[i] += temp;
        dp[i] %= DIVISOR;
    }
    println!("{}", dp[n]);
}
0