結果
問題 | No.1916 Making Palindrome on Gird |
ユーザー | ああいい |
提出日時 | 2022-04-29 21:44:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 259,028 KB |
最終ジャッジ日時 | 2024-06-29 03:05:23 |
合計ジャッジ時間 | 9,746 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
58,752 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 125 ms
78,224 KB |
testcase_03 | WA | - |
testcase_04 | AC | 46 ms
59,520 KB |
testcase_05 | AC | 44 ms
60,032 KB |
testcase_06 | AC | 49 ms
60,288 KB |
testcase_07 | AC | 44 ms
59,392 KB |
testcase_08 | AC | 42 ms
60,160 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 45 ms
62,464 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 84 ms
76,872 KB |
testcase_15 | WA | - |
testcase_16 | AC | 664 ms
104,652 KB |
testcase_17 | AC | 2,106 ms
259,028 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 | -- | - |
ソースコード
H,W = map(int,input().split()) S = [input() for _ in range(H)] P = 10 ** 9 + 7 import sys if S[0][0] != S[-1][-1]: print(0) exit() from collections import defaultdict d = defaultdict(int) d[(0,0,H - 1,W - 1)] = 1 ans = 0 for _ in range(H + W - 2): nx = defaultdict(int) for h,w,hh,ww in d: if h == hh and w == ww: ans += d[(h,w,hh,ww)] ans %= P continue for i,j in [(1,0),(0,1)]: for k,l in [(-1,0),(0,-1)]: if h + i < H and w + j < W and hh + k >= 0 and ww + l >= 0: if S[h + i][w + j] == S[hh + k][ww + l]: nx[(h + i,w + j,hh + k,ww + l)] += d[(h,w,hh,ww)] nx[(h + i,w + j,hh + k,ww + l)] %= P d = nx print(ans)