結果

問題 No.1492 01文字列と転倒
ユーザー convexineqconvexineq
提出日時 2021-05-01 04:04:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,206 ms / 4,000 ms
コード長 408 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 326,356 KB
最終ジャッジ日時 2024-07-19 07:10:41
合計ジャッジ時間 11,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 1,206 ms
326,016 KB
testcase_03 AC 1,073 ms
326,356 KB
testcase_04 AC 984 ms
326,144 KB
testcase_05 AC 842 ms
306,560 KB
testcase_06 AC 865 ms
306,944 KB
testcase_07 AC 951 ms
317,480 KB
testcase_08 AC 1,115 ms
326,124 KB
testcase_09 AC 45 ms
59,392 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 892 ms
306,528 KB
testcase_15 AC 60 ms
63,232 KB
testcase_16 AC 88 ms
76,800 KB
testcase_17 AC 851 ms
306,432 KB
testcase_18 AC 87 ms
77,056 KB
testcase_19 AC 55 ms
61,696 KB
testcase_20 AC 78 ms
71,936 KB
testcase_21 AC 771 ms
306,688 KB
testcase_22 AC 90 ms
76,544 KB
testcase_23 AC 69 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,MOD = map(int,input().split())
dp = [[1]]
for i in range(1,2*n+1):
    ndp = [[0]*((i//2)**2+1) for _ in range(i+1)]
    for j in range(i):
        for k,v in enumerate(dp[j]):
            if v==0: continue
            if j:
                ndp[j-1][k] += v
                ndp[j-1][k] %= MOD
            ndp[j+1][k+(i-j)//2] += v
            ndp[j+1][k+(i-j)//2] %= MOD
    dp = ndp
print(*dp[0],sep="\n")
0