結果

問題 No.1141 田グリッド
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:15:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 918 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 88,924 KB
最終ジャッジ日時 2024-12-15 22:51:45
合計ジャッジ時間 9,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,012 KB
testcase_01 AC 39 ms
52,468 KB
testcase_02 AC 39 ms
53,260 KB
testcase_03 AC 39 ms
52,288 KB
testcase_04 AC 40 ms
52,396 KB
testcase_05 AC 40 ms
53,284 KB
testcase_06 AC 39 ms
52,744 KB
testcase_07 AC 40 ms
52,704 KB
testcase_08 AC 64 ms
67,424 KB
testcase_09 AC 57 ms
64,624 KB
testcase_10 AC 63 ms
66,940 KB
testcase_11 AC 56 ms
65,332 KB
testcase_12 AC 70 ms
69,264 KB
testcase_13 AC 261 ms
88,924 KB
testcase_14 AC 316 ms
82,964 KB
testcase_15 AC 255 ms
78,320 KB
testcase_16 AC 258 ms
78,660 KB
testcase_17 AC 262 ms
78,480 KB
testcase_18 AC 212 ms
78,048 KB
testcase_19 AC 211 ms
78,740 KB
testcase_20 AC 213 ms
78,280 KB
testcase_21 AC 259 ms
78,420 KB
testcase_22 AC 254 ms
78,944 KB
testcase_23 AC 256 ms
78,364 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 208 ms
78,176 KB
testcase_30 AC 217 ms
77,792 KB
testcase_31 AC 229 ms
78,924 KB
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)]
prod = 1
zero = 0
prod_row = [1] * h
prod_col = [1] * w
zero_row = [1] * h
zero_col = [1] * 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