結果

問題 No.533 Mysterious Stairs
ユーザー mbanmban
提出日時 2017-06-24 07:15:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 1,424 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 113,976 KB
実行使用メモリ 47,744 KB
最終ジャッジ日時 2024-04-14 23:34:41
合計ジャッジ時間 2,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,408 KB
testcase_01 AC 23 ms
17,664 KB
testcase_02 AC 23 ms
17,920 KB
testcase_03 AC 22 ms
17,792 KB
testcase_04 AC 23 ms
17,792 KB
testcase_05 AC 22 ms
17,536 KB
testcase_06 AC 22 ms
17,536 KB
testcase_07 AC 22 ms
17,536 KB
testcase_08 AC 22 ms
17,792 KB
testcase_09 AC 22 ms
17,408 KB
testcase_10 AC 23 ms
17,792 KB
testcase_11 AC 23 ms
17,920 KB
testcase_12 AC 23 ms
17,792 KB
testcase_13 AC 22 ms
17,536 KB
testcase_14 AC 22 ms
17,664 KB
testcase_15 AC 22 ms
17,536 KB
testcase_16 AC 23 ms
17,664 KB
testcase_17 AC 23 ms
17,516 KB
testcase_18 AC 24 ms
17,764 KB
testcase_19 AC 23 ms
17,636 KB
testcase_20 AC 35 ms
20,224 KB
testcase_21 AC 39 ms
20,864 KB
testcase_22 AC 66 ms
28,928 KB
testcase_23 AC 128 ms
47,744 KB
testcase_24 AC 130 ms
47,744 KB
testcase_25 AC 34 ms
20,224 KB
testcase_26 AC 113 ms
43,904 KB
testcase_27 AC 50 ms
24,576 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 + 4, 2] %= Mod;
            dp[i + 3, 3] %= Mod;
        }
        Console.WriteLine((dp[N, 1] + dp[N, 2] + dp[N, 3]) % Mod);
    }
}
0