結果

問題 No.533 Mysterious Stairs
ユーザー d2verbd2verb
提出日時 2018-10-17 02:25:58
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 819 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 102,912 KB
実行使用メモリ 51,432 KB
最終ジャッジ日時 2024-06-13 01:53:00
合計ジャッジ時間 5,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
50,048 KB
testcase_01 AC 143 ms
50,120 KB
testcase_02 AC 135 ms
50,176 KB
testcase_03 AC 139 ms
51,104 KB
testcase_04 AC 140 ms
50,048 KB
testcase_05 AC 146 ms
51,276 KB
testcase_06 AC 136 ms
50,048 KB
testcase_07 AC 138 ms
50,192 KB
testcase_08 AC 139 ms
50,048 KB
testcase_09 AC 133 ms
51,220 KB
testcase_10 AC 138 ms
50,048 KB
testcase_11 AC 138 ms
50,036 KB
testcase_12 AC 143 ms
50,048 KB
testcase_13 AC 141 ms
50,512 KB
testcase_14 AC 139 ms
50,048 KB
testcase_15 AC 137 ms
51,228 KB
testcase_16 AC 134 ms
50,048 KB
testcase_17 AC 138 ms
50,008 KB
testcase_18 AC 146 ms
50,176 KB
testcase_19 AC 139 ms
50,556 KB
testcase_20 AC 152 ms
50,048 KB
testcase_21 AC 140 ms
50,388 KB
testcase_22 AC 155 ms
50,048 KB
testcase_23 AC 164 ms
50,752 KB
testcase_24 AC 169 ms
50,048 KB
testcase_25 AC 146 ms
51,432 KB
testcase_26 AC 164 ms
50,176 KB
testcase_27 AC 142 ms
51,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.algorithm;
import std.range;
import std.conv;
import std.format;
import std.array;
import std.math;
import std.string;
import std.container;

void main() {
  int N; readlnTo(N);
  auto dp = new int[][](1000001, 4);
  const int mod = 1000000007;

  dp[0][0] = 1;

  int val;
  foreach(i; 0..N) {
    foreach(j; 1..4) {
      if (i + j > N)
        continue;
      val = dp[i+j][j];
      foreach(k; 0..4) {
        if (j == k)
          continue;
        val = (val + dp[i][k]) % mod;
      }
      dp[i+j][j] = val;
    }
  }

  int ans = 0;
  foreach(i; 1..4)
    ans = (ans + dp[N][i]) % mod;

  ans.writeln;
}

// helpers
void readlnTo(T...)(ref T t) {
  auto s = readln.split;
  assert(s.length == t.length);
  foreach(ref ti; t) {
    ti = s[0].to!(typeof(ti));
    s = s[1..$];
  }
}
0