結果

問題 No.533 Mysterious Stairs
ユーザー 明智重蔵明智重蔵
提出日時 2017-06-24 08:33:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 568 ms / 5,000 ms
コード長 1,739 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 114,340 KB
実行使用メモリ 45,076 KB
最終ジャッジ日時 2024-10-04 05:14:19
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
26,008 KB
testcase_01 AC 23 ms
21,812 KB
testcase_02 AC 24 ms
23,840 KB
testcase_03 AC 22 ms
23,964 KB
testcase_04 AC 23 ms
23,968 KB
testcase_05 AC 33 ms
23,708 KB
testcase_06 AC 22 ms
21,808 KB
testcase_07 AC 22 ms
25,876 KB
testcase_08 AC 22 ms
24,116 KB
testcase_09 AC 22 ms
23,704 KB
testcase_10 AC 23 ms
23,728 KB
testcase_11 AC 23 ms
23,984 KB
testcase_12 AC 24 ms
25,740 KB
testcase_13 AC 24 ms
23,716 KB
testcase_14 AC 25 ms
24,096 KB
testcase_15 AC 26 ms
23,964 KB
testcase_16 AC 24 ms
23,872 KB
testcase_17 AC 26 ms
26,132 KB
testcase_18 AC 29 ms
26,120 KB
testcase_19 AC 29 ms
26,144 KB
testcase_20 AC 85 ms
29,208 KB
testcase_21 AC 91 ms
27,156 KB
testcase_22 AC 230 ms
35,088 KB
testcase_23 AC 543 ms
40,724 KB
testcase_24 AC 568 ms
45,076 KB
testcase_25 AC 87 ms
29,224 KB
testcase_26 AC 492 ms
40,848 KB
testcase_27 AC 167 ms
33,168 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.Generic;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("2");
            //1
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("4");
            //3
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("49993");
            //407466683
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        const int Hou = 1000000007;

        List<string> InputList = GetInputList();
        int N = int.Parse(InputList[0]);

        //場合の数[現在位置,前のStep数]なDP表
        int[,] DPArr = new int[N + 1, 4];
        DPArr[0, 0] = 1;

        for (int I = 0; I <= N; I++) {
            for (int J = 0; J <= 3; J++) {
                if (DPArr[I, J] == 0) continue;

                //歩数の候補
                var HosuuList = new List<int>() { 1, 2, 3 };
                HosuuList.Remove(J);

                foreach (int EachHosuu in HosuuList) {
                    int NewI = I + EachHosuu;
                    if (NewI > N) break;

                    int NewJ = EachHosuu;

                    DPArr[NewI, NewJ] += DPArr[I, J];
                    DPArr[NewI, NewJ] %= Hou;
                }
            }
        }

        int Answer = 0;
        for (int J = 1; J <= 3; J++) {
            Answer += DPArr[N, J];
            Answer %= Hou;
        }
        Console.WriteLine(Answer);
    }
}
0