結果

問題 No.140 みんなで旅行
ユーザー convexineqconvexineq
提出日時 2021-02-14 03:00:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,023 ms / 5,000 ms
コード長 904 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-21 07:14:44
合計ジャッジ時間 16,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 101 ms
68,352 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 42 ms
52,480 KB
testcase_10 AC 50 ms
60,032 KB
testcase_11 AC 2,998 ms
80,768 KB
testcase_12 AC 85 ms
67,456 KB
testcase_13 AC 69 ms
66,176 KB
testcase_14 AC 3,023 ms
80,640 KB
testcase_15 AC 2,992 ms
80,768 KB
testcase_16 AC 777 ms
77,568 KB
testcase_17 AC 314 ms
76,544 KB
testcase_18 AC 2,033 ms
79,616 KB
testcase_19 AC 2,411 ms
80,000 KB
testcase_20 AC 242 ms
76,544 KB
testcase_21 AC 65 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def clear():
    for i in range(n+1):
        for j in range(n+1):
            ndp[i][j] = 0
n = int(input())
MOD = 10**9+7
dp = [[0]*(n+1) for _ in range(n+1)]
dp[0][0] = 1
ndp = [[0]*(n+1) for _ in range(n+1)]
for _ in range(n):
    clear()
    for a in range(n+1):
        for b in range(n+1):
            x = dp[a][b]
            if x==0: continue
            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 = ndp,dp

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