結果

問題 No.1141 田グリッド
ユーザー ntudantuda
提出日時 2024-12-12 21:36:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,039 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-12-12 21:36:27
合計ジャッジ時間 9,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 75 ms
68,224 KB
testcase_09 AC 67 ms
65,152 KB
testcase_10 AC 78 ms
68,096 KB
testcase_11 AC 68 ms
65,280 KB
testcase_12 AC 85 ms
70,912 KB
testcase_13 AC 278 ms
88,576 KB
testcase_14 AC 324 ms
83,200 KB
testcase_15 AC 241 ms
77,952 KB
testcase_16 AC 244 ms
78,748 KB
testcase_17 AC 241 ms
78,080 KB
testcase_18 AC 227 ms
78,080 KB
testcase_19 AC 224 ms
78,496 KB
testcase_20 AC 226 ms
78,368 KB
testcase_21 AC 227 ms
78,208 KB
testcase_22 AC 248 ms
78,152 KB
testcase_23 AC 246 ms
78,080 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)]
MHR = [1] * H
MWR = [1] * W
total = 1
SH = set()
SW = set()
for h in range(H):
    for w in range(W):
        if A[h][w] > 0:
            MHR[h] *= A[h][w]
            MHR[h] %= MOD
            MWR[w] *= A[h][w]
            MWR[w] %= MOD
            total *= A[h][w]
            total %= MOD
        else:
            SH.add(h)
            SW.add(w)
for h in range(H):
    MHR[h] = pow(MHR[h], -1, MOD)
for w in range(W):
    MWR[w] = pow(MWR[w], -1, MOD)

f = 0
if len(SH) > 0:
    if len(SH) == 1 and len(SW) == 1:
        f = 1
    else:
        f = 2

for _ in range(int(input())):
    r, c = map(int, input().split())
    r -= 1
    c -= 1
    ans = total * A[r][c]
    if f == 2:
        print(0)
        continue
    if f == 1:
        if r not in SH or c not in SW:
            print(0)
            continue
        ans = total
    ans %= MOD
    ans *= MHR[r]
    ans %= MOD
    ans *= MWR[c]
    ans %= MOD
    print(ans)
0