結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | kozy |
提出日時 | 2022-04-29 21:51:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 415,160 KB |
最終ジャッジ日時 | 2024-06-29 03:14:58 |
合計ジャッジ時間 | 10,886 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,344 KB |
testcase_01 | AC | 40 ms
51,968 KB |
testcase_02 | AC | 85 ms
75,648 KB |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | AC | 45 ms
57,088 KB |
testcase_05 | AC | 44 ms
57,216 KB |
testcase_06 | AC | 45 ms
57,856 KB |
testcase_07 | AC | 44 ms
57,600 KB |
testcase_08 | AC | 45 ms
57,600 KB |
testcase_09 | AC | 44 ms
57,216 KB |
testcase_10 | AC | 39 ms
51,456 KB |
testcase_11 | AC | 47 ms
58,752 KB |
testcase_12 | AC | 47 ms
57,600 KB |
testcase_13 | AC | 78 ms
75,520 KB |
testcase_14 | AC | 72 ms
70,528 KB |
testcase_15 | AC | 1,361 ms
274,732 KB |
testcase_16 | AC | 781 ms
193,400 KB |
testcase_17 | AC | 2,857 ms
322,196 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 (a,b,c,d) in D: return D[(a,b,c,d)] if not (0<=a<H and 0<=b<W and 0<=c<H and 0<=d<W): return 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))