結果

問題 No.1141 田グリッド
ユーザー ntudantuda
提出日時 2024-12-18 20:25:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,510 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 93,020 KB
最終ジャッジ日時 2024-12-18 20:26:02
合計ジャッジ時間 13,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,684 KB
testcase_01 AC 34 ms
52,580 KB
testcase_02 AC 32 ms
52,264 KB
testcase_03 AC 35 ms
53,412 KB
testcase_04 AC 32 ms
53,168 KB
testcase_05 AC 33 ms
53,804 KB
testcase_06 AC 33 ms
52,484 KB
testcase_07 AC 35 ms
53,080 KB
testcase_08 AC 78 ms
76,776 KB
testcase_09 AC 64 ms
73,348 KB
testcase_10 AC 75 ms
76,664 KB
testcase_11 AC 68 ms
76,996 KB
testcase_12 AC 79 ms
76,912 KB
testcase_13 AC 446 ms
90,888 KB
testcase_14 AC 526 ms
93,020 KB
testcase_15 AC 474 ms
80,444 KB
testcase_16 AC 501 ms
79,952 KB
testcase_17 AC 497 ms
80,168 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 485 ms
80,336 KB
testcase_22 AC 473 ms
80,168 KB
testcase_23 AC 490 ms
80,232 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
AS = [[0] * (W + 1) for _ in range(H + 1)]
for i in range(H):
    for j in range(W):
        tmp = 1 if A[i][j] == 0 else 0
        tmp += AS[i + 1][j]
        tmp += AS[i][j + 1]
        tmp -= AS[i][j]
        AS[i + 1][j + 1] = tmp
AM = [[1] * (W + 1) for _ in range(H + 1)]
for i in range(H):
    for j in range(W):
        if A[i][j] == 0:
            AM[i + 1][j + 1] = 1
        else:
            tmp = A[i][j]
            tmp *= AM[i + 1][j]
            tmp %= MOD
            tmp *= AM[i][j + 1]
            tmp %= MOD
            tmp *= pow(AM[i][j],-1,MOD)
            tmp %= MOD
            AM[i + 1][j + 1] = tmp
def check(x1, y1, x2, y2):
    ret = AS[x1][y1]
    ret += AS[x2 - 1][y2 - 1]
    ret -= AS[x1][y2 - 1]
    ret -= AS[x2 - 1][y1]
    return ret > 0


def calc(x1, y1, x2, y2):
    ret = AM[x1][y1]
    ret %= MOD
    ret *= AM[x2][y2]
    ret %= MOD
    ret *= pow(AM[x1][y2], -1, MOD)
    ret %= MOD
    ret *= pow(AM[x2][y1], -1, MOD)
    ret %= MOD
    return ret


for _ in range(int(input())):
    r, c = map(int, input().split())
    if check(r - 1, c - 1, 0, 0) or check(H, W, r, c) or check(H, c - 1, r, 0) or check(r - 1, W, 0, c):
        print(0)
        continue
    ans = calc(r - 1, c - 1, 0, 0)
    ans %= MOD
    ans *= calc(H, W, r, c)
    ans %= MOD
    ans *= calc(H, c - 1, r, 0)
    ans %= MOD
    ans *= calc(r - 1, W, 0, c)
    ans %= MOD
    print(ans)
0