結果

問題 No.140 みんなで旅行
ユーザー convexineqconvexineq
提出日時 2021-02-14 02:56:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 765 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 280,796 KB
最終ジャッジ日時 2024-07-21 07:10:27
合計ジャッジ時間 7,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 147 ms
76,992 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 49 ms
61,480 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
MOD = 10**9+7
dp = [[0]*(n+1) for _ in range(n+1)]
dp[0][0] = 1
for _ in range(n):
    ndp = [[0]*(n+1) for _ in range(n+1)]
    for a in range(n+1):
        for b in range(n+1):
            x = dp[a][b]
            ndp[a][b] += x*(a*a-(a-b))
            ndp[a][b] %= MOD
            if b+1 <= n:
                ndp[a][b+1] += x*(a-b)
                ndp[a][b+1] %= MOD
            if a+1 <= n:
                ndp[a+1][b] += x*2*a
                ndp[a+1][b] %= MOD
            if a+1 <= n and b+1 <= n:
                ndp[a+1][b+1] += x
                ndp[a+1][b+1] %= MOD
            if a+2 <= n:
                ndp[a+2][b] += x
                ndp[a+2][b] %= MOD
    dp = ndp

ans = 0
for i in range(n+1):
    ans += dp[i][i]
print(ans%MOD)
0