結果

問題 No.1141 田グリッド
ユーザー AEnAEn
提出日時 2022-05-21 17:00:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-09-20 11:59:16
合計ジャッジ時間 7,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 65 ms
66,944 KB
testcase_09 AC 57 ms
64,000 KB
testcase_10 AC 63 ms
66,432 KB
testcase_11 AC 55 ms
64,128 KB
testcase_12 AC 71 ms
68,608 KB
testcase_13 AC 292 ms
88,960 KB
testcase_14 AC 348 ms
83,200 KB
testcase_15 AC 285 ms
78,592 KB
testcase_16 AC 293 ms
78,464 KB
testcase_17 AC 307 ms
78,336 KB
testcase_18 AC 202 ms
78,300 KB
testcase_19 AC 209 ms
78,720 KB
testcase_20 AC 204 ms
78,208 KB
testcase_21 AC 297 ms
78,336 KB
testcase_22 AC 298 ms
78,208 KB
testcase_23 AC 269 ms
78,336 KB
testcase_24 AC 201 ms
78,148 KB
testcase_25 AC 204 ms
78,080 KB
testcase_26 AC 213 ms
78,080 KB
testcase_27 AC 215 ms
78,180 KB
testcase_28 AC 209 ms
78,112 KB
testcase_29 AC 197 ms
78,336 KB
testcase_30 AC 222 ms
78,200 KB
testcase_31 AC 215 ms
78,592 KB
testcase_32 AC 196 ms
78,532 KB
testcase_33 AC 200 ms
78,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [list(map(int, input().split())) for  _ in range(H)]
H_n = [1]*H
W_n = [1]*W
H_z = [0]*H
W_z = [0]*W
mod = 10**9+7
al = 1
al_z = 0
for i in range(H):
    for j in range(W):
        if A[i][j] == 0:
            H_z[i] += 1
            W_z[j] += 1
            al_z += 1
        else:
            H_n[i] *= A[i][j]
            W_n[j] *= A[i][j]
            al *= A[i][j]
            H_n[i] %= mod
            W_n[j] %= mod
            al %= mod

Q = int(input())
for i in range(Q):
    r, c = map(int, input().split())
    if H_z[r-1]+W_z[c-1]-(A[r-1][c-1]==0) != al_z:
        print(0)
    else:
        p = 1 if A[r-1][c-1] == 0 else A[r-1][c-1]
        print((al*pow(H_n[r-1], mod-2, mod)*pow(W_n[c-1], mod-2, mod)*p)%mod)
0