結果

問題 No.140 みんなで旅行
ユーザー convexineqconvexineq
提出日時 2021-02-14 02:58:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,267 ms / 5,000 ms
コード長 795 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 275,712 KB
最終ジャッジ日時 2024-07-21 07:12:30
合計ジャッジ時間 12,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 95 ms
76,544 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 AC 2,267 ms
272,768 KB
testcase_12 AC 89 ms
76,416 KB
testcase_13 AC 66 ms
67,584 KB
testcase_14 AC 2,229 ms
275,712 KB
testcase_15 AC 2,194 ms
273,280 KB
testcase_16 AC 560 ms
104,704 KB
testcase_17 AC 225 ms
80,384 KB
testcase_18 AC 1,485 ms
232,704 KB
testcase_19 AC 1,730 ms
270,208 KB
testcase_20 AC 175 ms
79,104 KB
testcase_21 AC 53 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

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(a+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

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