結果
問題 | No.533 Mysterious Stairs |
ユーザー | aketijyuuzou |
提出日時 | 2024-10-10 23:48:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 623 ms / 5,000 ms |
コード長 | 1,957 bytes |
コンパイル時間 | 965 ms |
コンパイル使用メモリ | 111,708 KB |
実行使用メモリ | 42,920 KB |
最終ジャッジ日時 | 2024-10-10 23:48:45 |
合計ジャッジ時間 | 5,157 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
25,876 KB |
testcase_01 | AC | 25 ms
23,580 KB |
testcase_02 | AC | 25 ms
23,968 KB |
testcase_03 | AC | 26 ms
25,740 KB |
testcase_04 | AC | 25 ms
23,704 KB |
testcase_05 | AC | 25 ms
23,704 KB |
testcase_06 | AC | 27 ms
23,576 KB |
testcase_07 | AC | 33 ms
23,564 KB |
testcase_08 | AC | 27 ms
23,700 KB |
testcase_09 | AC | 26 ms
25,752 KB |
testcase_10 | AC | 25 ms
23,708 KB |
testcase_11 | AC | 26 ms
23,576 KB |
testcase_12 | AC | 25 ms
23,452 KB |
testcase_13 | AC | 26 ms
25,752 KB |
testcase_14 | AC | 25 ms
23,596 KB |
testcase_15 | AC | 26 ms
23,604 KB |
testcase_16 | AC | 28 ms
24,008 KB |
testcase_17 | AC | 29 ms
21,808 KB |
testcase_18 | AC | 30 ms
26,000 KB |
testcase_19 | AC | 31 ms
27,936 KB |
testcase_20 | AC | 92 ms
31,240 KB |
testcase_21 | AC | 101 ms
31,124 KB |
testcase_22 | AC | 247 ms
31,244 KB |
testcase_23 | AC | 623 ms
42,920 KB |
testcase_24 | AC | 595 ms
42,908 KB |
testcase_25 | AC | 92 ms
29,212 KB |
testcase_26 | AC | 545 ms
40,732 KB |
testcase_27 | AC | 171 ms
33,184 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 //1回のjumpで2stepする方法しかありません。 //1step+1stepという連続した同step数のjumpは行う事が出来ません。 } else if (InputPattern == "Input2") { WillReturn.Add("4"); //3 //(1,2,1),(3,1),(1,3)の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); } }