結果

問題 No.1492 01文字列と転倒
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-18 12:07:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,854 ms / 4,000 ms
コード長 563 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 312,648 KB
最終ジャッジ日時 2024-06-22 02:54:06
合計ジャッジ時間 17,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,020 KB
testcase_01 AC 37 ms
53,344 KB
testcase_02 AC 1,854 ms
312,648 KB
testcase_03 AC 1,695 ms
303,100 KB
testcase_04 AC 1,574 ms
297,752 KB
testcase_05 AC 1,326 ms
294,324 KB
testcase_06 AC 1,387 ms
293,832 KB
testcase_07 AC 1,499 ms
294,808 KB
testcase_08 AC 1,842 ms
312,392 KB
testcase_09 AC 43 ms
59,668 KB
testcase_10 AC 37 ms
53,092 KB
testcase_11 AC 46 ms
61,304 KB
testcase_12 AC 45 ms
61,520 KB
testcase_13 AC 38 ms
53,500 KB
testcase_14 AC 1,380 ms
294,348 KB
testcase_15 AC 61 ms
68,780 KB
testcase_16 AC 94 ms
77,536 KB
testcase_17 AC 1,331 ms
294,200 KB
testcase_18 AC 99 ms
77,352 KB
testcase_19 AC 56 ms
66,852 KB
testcase_20 AC 82 ms
77,004 KB
testcase_21 AC 1,121 ms
283,308 KB
testcase_22 AC 92 ms
77,056 KB
testcase_23 AC 75 ms
76,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
dp=[[0]*(n**2+1) for _ in range(n+1)]
dp[0][0]=1
# dp[i][j]:num0=i,num1=j
for i in range(2*n):
  ndp=[[0]*(n**2+1) for _ in range(n+1)]
  for j in range(n+1):
    for k in range(n**2+1):
      if dp[j][k]==0:continue
      if j>0:# 1を置く
        ndp[j-1][k]+=dp[j][k]
        ndp[j-1][k]%=m
      if i+j<2*n:# 0を置く
        x1=(i-j)//2
        ndp[j+1][k+x1]+=dp[j][k]
        ndp[j+1][k+x1]%=m
  dp=ndp
ans=[0]*(n**2+1)
for j in range(n+1):
  for k in range(n**2+1):
    ans[k]+=dp[j][k]
    ans[k]%=m
print(*ans,sep='\n')
0