結果

問題 No.1141 田グリッド
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:18:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-12-15 22:55:21
合計ジャッジ時間 8,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 70 ms
67,200 KB
testcase_09 AC 63 ms
64,000 KB
testcase_10 AC 70 ms
66,816 KB
testcase_11 AC 60 ms
64,128 KB
testcase_12 AC 75 ms
69,120 KB
testcase_13 AC 278 ms
88,832 KB
testcase_14 AC 353 ms
83,328 KB
testcase_15 AC 280 ms
78,208 KB
testcase_16 AC 279 ms
78,540 KB
testcase_17 AC 283 ms
78,356 KB
testcase_18 AC 231 ms
78,296 KB
testcase_19 AC 230 ms
78,464 KB
testcase_20 AC 228 ms
78,284 KB
testcase_21 AC 271 ms
78,336 KB
testcase_22 AC 271 ms
78,464 KB
testcase_23 AC 269 ms
78,464 KB
testcase_24 AC 232 ms
78,192 KB
testcase_25 AC 232 ms
77,968 KB
testcase_26 AC 245 ms
78,004 KB
testcase_27 AC 246 ms
78,548 KB
testcase_28 AC 231 ms
78,080 KB
testcase_29 AC 227 ms
78,080 KB
testcase_30 AC 238 ms
77,952 KB
testcase_31 AC 249 ms
79,104 KB
testcase_32 AC 225 ms
78,116 KB
testcase_33 AC 227 ms
78,508 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