結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | kozy |
提出日時 | 2022-04-29 21:39:51 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 487 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 414,844 KB |
最終ジャッジ日時 | 2024-06-29 02:59:04 |
合計ジャッジ時間 | 9,189 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
54,400 KB |
testcase_01 | AC | 35 ms
51,584 KB |
testcase_02 | AC | 66 ms
75,648 KB |
testcase_03 | AC | 34 ms
51,584 KB |
testcase_04 | AC | 36 ms
57,216 KB |
testcase_05 | AC | 38 ms
57,216 KB |
testcase_06 | AC | 42 ms
57,472 KB |
testcase_07 | AC | 37 ms
57,728 KB |
testcase_08 | AC | 36 ms
58,112 KB |
testcase_09 | AC | 33 ms
51,712 KB |
testcase_10 | AC | 34 ms
51,456 KB |
testcase_11 | AC | 40 ms
59,008 KB |
testcase_12 | AC | 39 ms
58,240 KB |
testcase_13 | AC | 56 ms
75,864 KB |
testcase_14 | AC | 56 ms
70,784 KB |
testcase_15 | AC | 1,039 ms
275,732 KB |
testcase_16 | AC | 553 ms
193,524 KB |
testcase_17 | AC | 2,044 ms
321,696 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
mod=10**9+7 def ans(a,b,c,d): if not (0<=a<H and 0<=b<W and 0<=c<H and 0<=d<W): return 0 if (a,b,c,d) in D: return D[(a,b,c,d)] x=0 if L[a][b]!=L[c][d]: return 0 if (a,b)==(c,d): return 1 if (a+1,b)==(c,d) or (a,b+1)==(c,d): return 1 X=(ans(a+1,b,c-1,d)+ans(a,b+1,c,d-1)+ans(a,b+1,c-1,d)+ans(a+1,b,c,d-1))%mod D[(a,b,c,d)]=X return X H,W=map(int,input().split()) L=list() for i in range(H): S=input() L.append(S) D=dict() print(ans(0,0,H-1,W-1))