結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
21,684 KB
testcase_01 AC 19 ms
23,720 KB
testcase_02 AC 19 ms
23,900 KB
testcase_03 AC 19 ms
23,724 KB
testcase_04 AC 20 ms
25,680 KB
testcase_05 AC 19 ms
23,596 KB
testcase_06 AC 19 ms
23,976 KB
testcase_07 AC 20 ms
23,596 KB
testcase_08 AC 20 ms
26,016 KB
testcase_09 AC 19 ms
23,724 KB
testcase_10 AC 20 ms
25,628 KB
testcase_11 AC 21 ms
23,980 KB
testcase_12 AC 20 ms
23,468 KB
testcase_13 AC 20 ms
25,848 KB
testcase_14 AC 20 ms
23,724 KB
testcase_15 AC 20 ms
23,720 KB
testcase_16 AC 20 ms
23,852 KB
testcase_17 AC 20 ms
25,452 KB
testcase_18 AC 21 ms
23,728 KB
testcase_19 AC 21 ms
23,976 KB
testcase_20 AC 32 ms
26,544 KB
testcase_21 AC 33 ms
28,896 KB
testcase_22 AC 57 ms
34,704 KB
testcase_23 AC 114 ms
54,056 KB
testcase_24 AC 119 ms
54,188 KB
testcase_25 AC 33 ms
22,340 KB
testcase_26 AC 106 ms
51,704 KB
testcase_27 AC 45 ms
30,908 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