結果

問題 No.1916 Making Palindrome on Gird
ユーザー googol_S0googol_S0
提出日時 2022-04-29 22:05:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 208,724 KB
最終ジャッジ日時 2024-06-29 03:33:30
合計ジャッジ時間 19,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,012 KB
testcase_01 AC 37 ms
52,808 KB
testcase_02 AC 99 ms
76,692 KB
testcase_03 AC 39 ms
52,764 KB
testcase_04 AC 90 ms
75,772 KB
testcase_05 AC 71 ms
73,584 KB
testcase_06 AC 70 ms
72,548 KB
testcase_07 AC 94 ms
76,092 KB
testcase_08 AC 73 ms
73,992 KB
testcase_09 AC 41 ms
54,092 KB
testcase_10 WA -
testcase_11 AC 89 ms
76,180 KB
testcase_12 AC 69 ms
72,072 KB
testcase_13 AC 542 ms
118,812 KB
testcase_14 AC 363 ms
109,516 KB
testcase_15 AC 663 ms
133,928 KB
testcase_16 AC 434 ms
103,208 KB
testcase_17 AC 1,118 ms
187,652 KB
testcase_18 AC 1,287 ms
208,688 KB
testcase_19 AC 1,288 ms
208,720 KB
testcase_20 AC 1,276 ms
208,404 KB
testcase_21 AC 1,296 ms
208,672 KB
testcase_22 AC 1,306 ms
208,688 KB
testcase_23 AC 40 ms
52,500 KB
testcase_24 AC 40 ms
53,316 KB
testcase_25 AC 40 ms
53,812 KB
testcase_26 AC 42 ms
52,912 KB
testcase_27 AC 42 ms
54,128 KB
testcase_28 AC 1,363 ms
208,540 KB
testcase_29 AC 1,331 ms
208,496 KB
testcase_30 AC 1,365 ms
208,724 KB
testcase_31 AC 1,334 ms
208,688 KB
testcase_32 AC 1,390 ms
208,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
H,W=map(int,input().split())
S=[input() for i in range(H)]
if S[0][0]!=S[-1][-1]:
  print(0)
  exit()
N=H+W-2
DP=[[[0]*H for i in range(H)] for j in range(N+1)]
DP[0][0][H-1]=1
ANS=0
for i in range(N):
  for j in range(H):
    for k in range(H):
      x1,y1=j,i-j
      x2,y2=k,W-1-(i-(H-1-k))
      if y1<0 or y2<0 or y2>=W:
        continue
      if abs(x1-x2)+abs(y1-y2)<=1 and x1<=x2 and y1<=y2:
        ANS=(ANS+DP[i][j][k])%mod
      for l in range(2):
        for m in range(2):
          x3,y3=x1+l,y1+(l^1)
          x4,y4=x2-m,y2-(m^1)
          if H<=x3 or W<=y3 or x4<0 or y4<0:
            continue
          if S[x3][y3]==S[x4][y4]:
            DP[i+1][j+l][k-m]=(DP[i+1][j+l][k-m]+DP[i][j][k])%mod
print(ANS)
0