結果

問題 No.1141 田グリッド
ユーザー convexineqconvexineq
提出日時 2021-05-10 07:07:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-09-19 11:34:02
合計ジャッジ時間 7,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 40 ms
52,252 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 35 ms
52,736 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 72 ms
66,688 KB
testcase_09 AC 54 ms
63,744 KB
testcase_10 AC 59 ms
66,560 KB
testcase_11 AC 53 ms
64,512 KB
testcase_12 AC 64 ms
68,864 KB
testcase_13 AC 262 ms
88,960 KB
testcase_14 AC 317 ms
82,688 KB
testcase_15 AC 259 ms
78,208 KB
testcase_16 AC 260 ms
78,592 KB
testcase_17 AC 265 ms
78,528 KB
testcase_18 AC 218 ms
78,208 KB
testcase_19 AC 209 ms
77,712 KB
testcase_20 AC 207 ms
77,696 KB
testcase_21 AC 258 ms
78,440 KB
testcase_22 AC 266 ms
78,080 KB
testcase_23 AC 258 ms
78,480 KB
testcase_24 AC 212 ms
77,936 KB
testcase_25 AC 211 ms
77,952 KB
testcase_26 AC 221 ms
78,084 KB
testcase_27 AC 221 ms
78,464 KB
testcase_28 AC 222 ms
78,208 KB
testcase_29 AC 217 ms
78,208 KB
testcase_30 AC 224 ms
77,824 KB
testcase_31 AC 207 ms
78,080 KB
testcase_32 AC 215 ms
78,208 KB
testcase_33 AC 215 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
h,w = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(h)]

row = [1]*h
zrow = [0]*h
for i in range(h):
    v = 1
    for j in range(w):
        if a[i][j]:
            v = v*a[i][j]%MOD
        else:
            zrow[i] += 1
    row[i] = v

col = [1]*w
zcol = [0]*w
for j in range(w):
    v = 1
    for i in range(h):
        if a[i][j]:
            v = v*a[i][j]%MOD
        else:
            zcol[j] += 1
    col[j] = v

tot = 1
for v in row: tot = tot*v%MOD
ztot = sum(zrow)

def inv(x):
    assert x
    return pow(x,MOD-2,MOD)

Q = int(input())
for _ in range(Q):
    r,c = map(int,input().split())
    r -= 1
    c -= 1
    if ztot - zrow[r] - zcol[c] + (a[r][c]==0):
        print(0)
    else:
        print(tot*inv(row[r]*col[c]%MOD)%MOD*max(a[r][c],1)%MOD)
0