結果

問題 No.336 門松列列
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-23 23:34:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 2,104 bytes
コンパイル時間 1,152 ms
コンパイル使用メモリ 118,796 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-06-12 01:14:01
合計ジャッジ時間 2,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,104 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 47 ms
34,688 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 8 ms
7,680 KB
testcase_07 AC 19 ms
16,640 KB
testcase_08 AC 32 ms
28,032 KB
testcase_09 AC 45 ms
34,048 KB
testcase_10 AC 45 ms
34,560 KB
testcase_11 AC 45 ms
34,688 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