結果

問題 No.1492 01文字列と転倒
ユーザー ああああ
提出日時 2022-10-17 20:47:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,358 ms / 4,000 ms
コード長 515 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 305,056 KB
最終ジャッジ日時 2024-06-28 10:18:33
合計ジャッジ時間 13,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 1,358 ms
304,420 KB
testcase_03 AC 1,249 ms
291,828 KB
testcase_04 AC 1,157 ms
294,016 KB
testcase_05 AC 986 ms
295,168 KB
testcase_06 AC 1,031 ms
293,980 KB
testcase_07 AC 1,115 ms
299,120 KB
testcase_08 AC 1,354 ms
305,056 KB
testcase_09 AC 45 ms
59,648 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 46 ms
52,608 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 1,071 ms
293,984 KB
testcase_15 AC 53 ms
64,384 KB
testcase_16 AC 82 ms
77,120 KB
testcase_17 AC 981 ms
295,052 KB
testcase_18 AC 84 ms
77,348 KB
testcase_19 AC 50 ms
62,080 KB
testcase_20 AC 73 ms
76,556 KB
testcase_21 AC 834 ms
287,992 KB
testcase_22 AC 82 ms
76,908 KB
testcase_23 AC 65 ms
74,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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



dp=[[0]*(N**2+1) for _ in range(N+1)] 
dp[0][0]=1

for i in range(N*2):
    ndp=[[0]*(N**2+1) for _ in range(N+1)] 
    for j in range((i+1)//2,min(i,N)+1):
        for k in range(min(i**2,N**2)+1):
            #if dp[j][k]==0:
            #    continue
            ndp[j][k]+=dp[j][k]
            ndp[j][k]%=M
            if j+1<=N and k+i-j<N**2+1:
                ndp[j+1][k+i-j]+=dp[j][k]
                ndp[j][k]%=M
    dp=ndp
for i in range(N**2+1):
    print(dp[N][i]%M)




0