結果

問題 No.1141 田グリッド
ユーザー uni_pythonuni_python
提出日時 2020-08-05 21:57:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,302 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 89,628 KB
最終ジャッジ日時 2024-09-17 14:59:40
合計ジャッジ時間 8,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,060 KB
testcase_01 AC 36 ms
52,964 KB
testcase_02 AC 34 ms
53,372 KB
testcase_03 AC 34 ms
53,500 KB
testcase_04 AC 34 ms
52,824 KB
testcase_05 AC 34 ms
52,796 KB
testcase_06 AC 33 ms
52,984 KB
testcase_07 AC 33 ms
52,364 KB
testcase_08 AC 45 ms
64,428 KB
testcase_09 AC 43 ms
61,912 KB
testcase_10 AC 45 ms
64,248 KB
testcase_11 AC 45 ms
63,372 KB
testcase_12 AC 49 ms
65,524 KB
testcase_13 AC 175 ms
86,852 KB
testcase_14 AC 200 ms
83,512 KB
testcase_15 AC 164 ms
77,164 KB
testcase_16 AC 162 ms
77,032 KB
testcase_17 AC 163 ms
77,396 KB
testcase_18 AC 212 ms
78,532 KB
testcase_19 AC 218 ms
78,456 KB
testcase_20 AC 204 ms
78,516 KB
testcase_21 AC 165 ms
77,604 KB
testcase_22 AC 160 ms
77,276 KB
testcase_23 AC 165 ms
77,000 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 #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    H,W=MI()
    A=[]
    for i in range(H):
        a=LI()
        A.append(a)
        
    #0以外の積を計算
    hm=[1]*H
    wm=[1]*W
    M=1
    
    # 2行以上 or 2列以上に0があれば,何をしても答えは0
    hzero=set([])
    wzero=set([])
    
    for i in range(H):
        for j in range(W):
            if A[i][j]==0:
                hzero.add(i)
                wzero.add(j)
            else:
                hm[i]=(hm[i]*A[i][j])%mod
                wm[j]=(wm[j]*A[i][j])%mod
                
                
    for i in range(H):
        M=(M*hm[i])%mod
        
    def calc(r,q):
        res=M
        res=(res*pow(hm[r],mod-2,mod))%mod
        res=(res*pow(wm[q],mod-2,mod))%mod
        res=(res*A[r][q])%mod
        return res

        
    Q=I()
    for _ in range(Q):
        r,q=MI()
        r-=1
        q-=1
        ans=1
        hzero2=hzero - set([r])
        wzero2=wzero - set([q])
        
        if len(hzero2)==0 and len(wzero2)==0:
            ans=calc(r,q)
        else:
            ans=0
        

        print(ans)
                
    
            


main()
0