結果

問題 No.533 Mysterious Stairs
ユーザー mbanmban
提出日時 2017-06-24 07:16:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 1,424 bytes
コンパイル時間 5,800 ms
コンパイル使用メモリ 110,952 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-04 05:13:04
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,852 KB
testcase_01 AC 21 ms
21,556 KB
testcase_02 AC 21 ms
23,468 KB
testcase_03 AC 22 ms
24,112 KB
testcase_04 AC 20 ms
25,936 KB
testcase_05 AC 20 ms
23,464 KB
testcase_06 AC 20 ms
23,856 KB
testcase_07 AC 20 ms
25,676 KB
testcase_08 AC 21 ms
21,808 KB
testcase_09 AC 20 ms
23,720 KB
testcase_10 AC 22 ms
23,464 KB
testcase_11 AC 22 ms
23,784 KB
testcase_12 AC 22 ms
25,576 KB
testcase_13 AC 22 ms
23,848 KB
testcase_14 AC 23 ms
27,772 KB
testcase_15 AC 22 ms
23,720 KB
testcase_16 AC 21 ms
23,720 KB
testcase_17 AC 21 ms
23,972 KB
testcase_18 AC 21 ms
25,880 KB
testcase_19 AC 23 ms
23,724 KB
testcase_20 AC 34 ms
26,412 KB
testcase_21 AC 37 ms
28,912 KB
testcase_22 AC 62 ms
34,844 KB
testcase_23 AC 122 ms
53,936 KB
testcase_24 AC 125 ms
54,196 KB
testcase_25 AC 34 ms
26,416 KB
testcase_26 AC 108 ms
49,644 KB
testcase_27 AC 49 ms
30,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    private const int Mod = (int)1e9 + 7;

    public void Solve()
    {
        N = int.Parse(Console.ReadLine());
        var dp = new long[N + 10, 4];
        dp[0, 0] = 1;
        for (int i = 0; i < N; i++)
        {
            if (i == 0)
            {
                dp[i + 1, 1] = dp[i, 0];
                dp[i + 2, 2] = dp[i, 0];
                dp[i + 3, 3] = dp[i, 0];
            }
            else
            {
                if (dp[i, 1] != 0)
                {
                    dp[i + 2, 2] += dp[i, 1];
                    dp[i + 3, 3] += dp[i, 1];
                }
                if (dp[i, 2] != 0)
                {
                    dp[i + 3, 3] += dp[i, 2];
                    dp[i + 1, 1] += dp[i, 2];
                }
                if (dp[i, 3] != 0)
                {
                    dp[i + 1, 1] += dp[i, 3];
                    dp[i + 2, 2] += dp[i, 3];
                }
            }
            dp[i + 1, 1] %= Mod;
            dp[i + 2, 2] %= Mod;
            dp[i + 3, 3] %= Mod;
        }
        Console.WriteLine((dp[N, 1] + dp[N, 2] + dp[N, 3]) % Mod);
    }
}
0