結果

問題 No.336 門松列列
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-23 23:34:23
言語 D
(dmd 2.105.2)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 2,104 bytes
コンパイル時間 4,050 ms
コンパイル使用メモリ 106,648 KB
実行使用メモリ 36,216 KB
最終ジャッジ日時 2023-09-02 18:45:40
合計ジャッジ時間 4,536 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
32,676 KB
testcase_01 AC 1 ms
4,368 KB
testcase_02 AC 1 ms
4,372 KB
testcase_03 AC 2 ms
4,368 KB
testcase_04 AC 45 ms
35,720 KB
testcase_05 AC 1 ms
4,372 KB
testcase_06 AC 8 ms
8,056 KB
testcase_07 AC 19 ms
17,288 KB
testcase_08 AC 32 ms
29,836 KB
testcase_09 AC 45 ms
34,468 KB
testcase_10 AC 44 ms
35,280 KB
testcase_11 AC 45 ms
36,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(T)(in T[] as, in bool delegate(T) test) { int low = -1, upp = cast(int)(as.length); for (; low + 1 < upp; ) { int mid = (low + upp) >> 1; (test(as[mid]) ? low : upp) = mid; } return upp; }
int lowerBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a < val)); }
int upperBound(T)(in T[] as, in T val) { return as.binarySearch((T a) => (a <= val)); }


enum MO = 1000000007L;

int N;

void main() {
  try {
    for (; ; ) {
      N = readInt();
      if (N <= 2) {
        writeln(0);
      } else {
        auto dp = new long[][](N, N + 1);
        dp[0][] = 1;
        foreach (i; 1 .. N) {
          foreach (x; 0 .. N + 1 - i) {
            if (i % 2 == 0) {
              (dp[i][0] += dp[i - 1][x]) %= MO;
              (dp[i][x] -= dp[i - 1][x]) %= MO;
            } else {
              (dp[i][x] += dp[i - 1][x]) %= MO;
              (dp[i][N - i] -= dp[i - 1][x]) %= MO;
            }
          }
          foreach (x; 1 .. N + 1 - i) {
            (dp[i][x] += dp[i][x - 1]) %= MO;
          }
        }
        debug {
          if (N <= 10) {
            foreach (i; 0 .. N) {
              writeln(i, " ", dp[i]);
            }
          }
        }
        long ans = dp[N - 1][0];
        ans *= 2;
        ans = (ans % MO + MO) % MO;
        writeln(ans);
      }
    }
  } catch (EOFException e) {
  }
}
0