結果

問題 No.533 Mysterious Stairs
ユーザー nebukuro09nebukuro09
提出日時 2017-06-23 22:42:19
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 209 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 113,528 KB
実行使用メモリ 67,616 KB
最終ジャッジ日時 2024-06-12 20:29:18
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 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 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 24 ms
11,096 KB
testcase_21 AC 25 ms
12,744 KB
testcase_22 AC 78 ms
26,676 KB
testcase_23 AC 205 ms
66,868 KB
testcase_24 AC 209 ms
67,616 KB
testcase_25 AC 23 ms
11,596 KB
testcase_26 AC 178 ms
59,996 KB
testcase_27 AC 55 ms
19,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

immutable long MOD = 10^^9 + 7;

void main() {
    auto N = readln.chomp.to!int;
    auto dp = new long[][](N+1, 4);
    dp[0][0] = 1;

    foreach (i; 1..N+1) {
        foreach (j; 0..4) {
            foreach (k; 0..4) {
                if (k == 0) continue;
                if (j == k) continue;
                if (i-k < 0) continue;
                (dp[i][k] += dp[i-k][j]) %= MOD;
            }
        }
    }

    writeln((dp[N][1] + dp[N][2] + dp[N][3]) % MOD);
}
0