結果
問題 | No.727 仲介人moko |
ユーザー | nebukuro09 |
提出日時 | 2018-08-24 22:26:55 |
言語 | D (dmd 2.106.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 761 bytes |
コンパイル時間 | 1,028 ms |
コンパイル使用メモリ | 113,920 KB |
実行使用メモリ | 812,656 KB |
最終ジャッジ日時 | 2024-06-13 01:36:57 |
合計ジャッジ時間 | 3,130 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 52 ms
66,168 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, std.bitmanip; immutable long MOD = 10^^9 + 7; void main() { auto N = readln.chomp.to!int; assert (N < 1000); auto dp = new long[][](N*2+1, N*2+1); dp[0][0] = 1; foreach (i; 0..N*2) { foreach (j; 0..i+1) { int k = i - j; if (k > j) continue; int rest_j = N - j; int rest_k = N - k; if (rest_j > 0) (dp[i+1][j-k+1] += dp[i][j-k] * rest_j % MOD) %= MOD; if (j - k > 0) (dp[i+1][j-k-1] += dp[i][j-k] * rest_k % MOD * (j - k) % MOD) %= MOD; } } dp[N*2][0].writeln; }