結果

問題 No.1492 01文字列と転倒
ユーザー ああいいああいい
提出日時 2022-03-07 17:26:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,743 ms / 4,000 ms
コード長 525 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 307,100 KB
最終ジャッジ日時 2024-07-22 12:36:42
合計ジャッジ時間 24,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 2,743 ms
305,280 KB
testcase_03 AC 2,658 ms
305,924 KB
testcase_04 AC 2,371 ms
307,100 KB
testcase_05 AC 1,960 ms
289,832 KB
testcase_06 AC 2,060 ms
294,612 KB
testcase_07 AC 2,254 ms
295,724 KB
testcase_08 AC 2,710 ms
305,064 KB
testcase_09 AC 44 ms
59,776 KB
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 35 ms
52,736 KB
testcase_12 AC 37 ms
52,736 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 2,085 ms
294,852 KB
testcase_15 AC 54 ms
64,768 KB
testcase_16 AC 102 ms
78,080 KB
testcase_17 AC 1,975 ms
289,420 KB
testcase_18 AC 105 ms
77,480 KB
testcase_19 AC 50 ms
62,976 KB
testcase_20 AC 91 ms
77,064 KB
testcase_21 AC 1,831 ms
290,944 KB
testcase_22 AC 103 ms
77,696 KB
testcase_23 AC 72 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

S = N * N
dp = [[0] * (S+1) for _ in range(N+1)]
dp[0][0] = 1
for i in range(2,2 * N + 1):
    nx = [[0] * (S + 1) for _ in range(N+1)]
    for j in range(i//2):
        for k in range(S+1):
            nx[j+1][k] += dp[j][k]
            nx[j+1][k] %= M
    for j in range(max(0,i-N),N+1):
        for k in range(S+1):
            if j + k > S:
                break
            else:
                nx[j][k+j] += dp[j][k]
                nx[j][k+j] %= M
    dp = nx
print(*dp[N],sep = "\n")
0