結果

問題 No.523 LED
ユーザー phsplsphspls
提出日時 2022-12-03 17:07:08
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 12,552 ms
コンパイル使用メモリ 389,800 KB
実行使用メモリ 80,008 KB
最終ジャッジ日時 2024-10-10 19:36:04
合計ジャッジ時間 14,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 121 ms
79,840 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 25 ms
16,708 KB
testcase_14 AC 1 ms
6,824 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 119 ms
80,008 KB
testcase_19 AC 44 ms
29,644 KB
testcase_20 AC 39 ms
26,264 KB
testcase_21 AC 91 ms
60,356 KB
testcase_22 AC 101 ms
67,348 KB
testcase_23 AC 101 ms
67,248 KB
testcase_24 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const MOD: usize = 1e9 as usize + 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 dp = vec![0usize; n+1];
    dp[1] = 1;
    for i in 1..n {
        dp[i+1] = dp[i] * (2*i + 1) % MOD * i % MOD + dp[i] * (2*i+1) % MOD;
        dp[i+1] %= MOD;
    }
    println!("{}", dp[n]);
}
0