結果

問題 No.1141 田グリッド
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:18:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 89,076 KB
最終ジャッジ日時 2024-05-09 10:48:12
合計ジャッジ時間 8,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
52,344 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 59 ms
66,816 KB
testcase_09 AC 53 ms
64,000 KB
testcase_10 AC 57 ms
66,816 KB
testcase_11 AC 51 ms
64,896 KB
testcase_12 AC 63 ms
69,504 KB
testcase_13 AC 256 ms
89,076 KB
testcase_14 AC 304 ms
82,988 KB
testcase_15 AC 246 ms
78,584 KB
testcase_16 AC 253 ms
78,544 KB
testcase_17 AC 259 ms
78,488 KB
testcase_18 AC 212 ms
78,344 KB
testcase_19 AC 214 ms
78,468 KB
testcase_20 AC 215 ms
78,204 KB
testcase_21 AC 251 ms
78,472 KB
testcase_22 AC 249 ms
78,464 KB
testcase_23 AC 248 ms
78,512 KB
testcase_24 AC 215 ms
78,080 KB
testcase_25 AC 210 ms
78,084 KB
testcase_26 AC 221 ms
78,296 KB
testcase_27 AC 223 ms
78,412 KB
testcase_28 AC 215 ms
78,080 KB
testcase_29 AC 200 ms
78,080 KB
testcase_30 AC 222 ms
78,336 KB
testcase_31 AC 229 ms
78,720 KB
testcase_32 AC 209 ms
78,120 KB
testcase_33 AC 198 ms
78,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

h, w = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(h)]
prod = 1
zero = 0
prod_row = [1] * h
prod_col = [1] * w
zero_row = [0] * h
zero_col = [0] * w
for i in range(h):
    for j in range(w):
        if A[i][j] == 0:
            zero += 1
            zero_row[i] += 1
            zero_col[j] += 1
        else:
            prod *= A[i][j]
            prod_row[i] *= A[i][j]
            prod_col[j] *= A[i][j]
            prod %= MOD
            prod_row[i] %= MOD
            prod_col[j] %= MOD

Q = int(input())
for _ in range(Q):
    r, c = map(int, input().split())
    r -= 1
    c -= 1
    z = zero - zero_row[r] - zero_col[c] + int(A[r][c] == 0)
    
    if z > 0:
        print(0)
    else:
        ans = prod * pow(prod_row[r] * prod_col[c] % MOD, MOD - 2, MOD) % MOD
        if A[r][c] != 0:
            ans *= A[r][c]
            ans %= MOD
        print(ans)

0