結果

問題 No.1141 田グリッド
ユーザー KazunKazun
提出日時 2021-03-02 18:48:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-10-03 01:56:18
合計ジャッジ時間 6,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 58 ms
64,000 KB
testcase_09 AC 54 ms
62,592 KB
testcase_10 AC 57 ms
64,256 KB
testcase_11 AC 55 ms
62,976 KB
testcase_12 AC 61 ms
65,280 KB
testcase_13 AC 157 ms
91,008 KB
testcase_14 AC 204 ms
89,344 KB
testcase_15 AC 156 ms
80,256 KB
testcase_16 AC 153 ms
80,000 KB
testcase_17 AC 162 ms
80,384 KB
testcase_18 AC 106 ms
78,464 KB
testcase_19 AC 103 ms
78,464 KB
testcase_20 AC 100 ms
78,336 KB
testcase_21 AC 155 ms
80,000 KB
testcase_22 AC 156 ms
80,000 KB
testcase_23 AC 152 ms
80,000 KB
testcase_24 AC 98 ms
78,464 KB
testcase_25 AC 102 ms
78,720 KB
testcase_26 AC 105 ms
78,848 KB
testcase_27 AC 101 ms
78,976 KB
testcase_28 AC 104 ms
78,720 KB
testcase_29 AC 100 ms
78,208 KB
testcase_30 AC 100 ms
78,464 KB
testcase_31 AC 101 ms
78,336 KB
testcase_32 AC 95 ms
78,720 KB
testcase_33 AC 96 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write
#============================入力
H,W=map(int,input().split())

A=[[1]*(W+1) for _ in range(H+1)]
for i in range(1,H+1):
    A[i][1:]=list(map(int,input().split()))
#============================前計算
Mod=10**9+7

B=[[1]*(W+1) for _ in range(H+1)]
All_prod=1
X_prod=[1]*(H+1)
Y_prod=[1]*(W+1)

Zero_X=[0]*(H+1)
Zero_Y=[0]*(W+1)
for x in range(H+1):
    E=A[x]
    F=B[x]
    for y in range(W+1):
        t=E[y]
        if t==0:
            Zero_X[x]+=1
            Zero_Y[y]+=1
            F[y]=t=1
        else:
            F[y]=t

        All_prod*=t
        All_prod%=Mod

        X_prod[x]*=t
        X_prod[x]%=Mod

        Y_prod[y]*=t
        Y_prod[y]%=Mod
Zero_Total=sum(Zero_X)
#============================クエリ処理
Q=int(input())
T=[0]*Q
for k in range(Q):
    r,c=map(int,input().split())

    zero=Zero_Total-(Zero_X[r]+Zero_Y[c])
    if A[r][c]==0:
        zero+=1

    if zero>0:
        continue

    T[k]=All_prod*pow(X_prod[r]*Y_prod[c],Mod-2,Mod)*B[r][c]
    T[k]%=Mod

write("\n".join(map(str,T)))
0