結果

問題 No.533 Mysterious Stairs
ユーザー Akihiro ShojiAkihiro Shoji
提出日時 2017-06-25 16:08:08
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 215 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 98,140 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-06-12 20:30:35
合計ジャッジ時間 3,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
33,356 KB
testcase_01 AC 19 ms
33,320 KB
testcase_02 AC 21 ms
33,272 KB
testcase_03 AC 20 ms
33,296 KB
testcase_04 AC 19 ms
33,304 KB
testcase_05 AC 19 ms
33,460 KB
testcase_06 AC 19 ms
33,392 KB
testcase_07 AC 19 ms
33,292 KB
testcase_08 AC 20 ms
33,308 KB
testcase_09 AC 19 ms
33,324 KB
testcase_10 AC 19 ms
33,312 KB
testcase_11 AC 20 ms
33,460 KB
testcase_12 AC 20 ms
33,304 KB
testcase_13 AC 20 ms
33,356 KB
testcase_14 AC 19 ms
33,448 KB
testcase_15 AC 20 ms
33,412 KB
testcase_16 AC 20 ms
33,500 KB
testcase_17 AC 21 ms
33,712 KB
testcase_18 AC 20 ms
33,920 KB
testcase_19 AC 23 ms
34,168 KB
testcase_20 AC 42 ms
41,532 KB
testcase_21 AC 46 ms
42,288 KB
testcase_22 AC 97 ms
61,352 KB
testcase_23 AC 213 ms
105,364 KB
testcase_24 AC 215 ms
106,368 KB
testcase_25 AC 42 ms
41,516 KB
testcase_26 AC 185 ms
96,180 KB
testcase_27 AC 73 ms
51,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm,
       std.string,
       std.range,
       std.stdio,
       std.conv;

ulong INF = ulong.max;
ulong M = 10L^^9 + 7;
ulong[4][1000001] dp;
ulong N;

ulong solve(ulong i, ulong prev) {
  if (dp[i][prev] != INF) { return dp[i][prev]; }

  if (i == N) { return 1; }
  int ret;

  foreach (d; 3.iota) {
    d++;
    if (prev != d && i + d <= N) {
      ret += solve(i + d, d);
      ret %= M;
    }
  }

  return dp[i][prev] = ret;
}

void main() {
  foreach (i; 1000001.iota) {
    foreach (j; 4.iota) {
      dp[i][j] = INF;
    }
  }

  N = readln.chomp.to!ulong;
  writeln(solve(0, 0));
}
0