結果

問題 No.44 DPなすごろく
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 21:44:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 1,965 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 113,700 KB
実行使用メモリ 25,708 KB
最終ジャッジ日時 2024-10-10 21:44:17
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,524 KB
testcase_01 AC 24 ms
23,988 KB
testcase_02 AC 24 ms
23,768 KB
testcase_03 AC 24 ms
25,632 KB
testcase_04 AC 24 ms
23,708 KB
testcase_05 AC 24 ms
23,664 KB
testcase_06 AC 24 ms
25,568 KB
testcase_07 AC 23 ms
25,696 KB
testcase_08 AC 23 ms
25,620 KB
testcase_09 AC 23 ms
23,668 KB
testcase_10 AC 26 ms
23,668 KB
testcase_11 AC 24 ms
23,664 KB
testcase_12 AC 23 ms
23,536 KB
testcase_13 AC 22 ms
23,640 KB
testcase_14 AC 23 ms
25,364 KB
testcase_15 AC 23 ms
25,500 KB
testcase_16 AC 24 ms
23,856 KB
testcase_17 AC 23 ms
23,668 KB
testcase_18 AC 23 ms
21,684 KB
testcase_19 AC 25 ms
25,704 KB
testcase_20 AC 24 ms
25,708 KB
testcase_21 AC 24 ms
25,688 KB
testcase_22 AC 23 ms
23,788 KB
testcase_23 AC 23 ms
23,984 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");
            //2
            //2に行く方法は「1・1」と「2」の2パターンです。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3");
            //3
            //3に行く方法は「1・1・1」と「2・1」と「1・2」の3パターンです。
            //「2・1」と「1・2」は区別するのでご注意ください。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("5");
            //8
            //「1・1・1・1・1」
            //「2・1・1・1」
            //「1・2・1・1」
            //「1・1・2・1」
            //「1・1・1・2」
            //「1・2・2」
            //「2・1・2」
            //「2・2・1」
            //の8通り
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("50");
            //20365011074
            //答えは 2の32乗 を超えるのでintでは収まりません。
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        long[] PatternCntArr = new long[N + 1];
        int UB = PatternCntArr.GetUpperBound(0);
        PatternCntArr[1] = 1;
        PatternCntArr[2] = 2;

        for (int I = 3; I <= UB; I++) {
            PatternCntArr[I] = PatternCntArr[I - 1] + PatternCntArr[I - 2];
        }
        Console.WriteLine(PatternCntArr[UB]);
    }
}

0