結果

問題 No.1141 田グリッド
ユーザー uni_pythonuni_python
提出日時 2020-08-05 21:47:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,447 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 87,460 KB
最終ジャッジ日時 2024-09-17 13:44:30
合計ジャッジ時間 6,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,396 KB
testcase_01 AC 32 ms
52,448 KB
testcase_02 AC 36 ms
53,300 KB
testcase_03 AC 36 ms
54,288 KB
testcase_04 AC 39 ms
53,272 KB
testcase_05 AC 36 ms
52,532 KB
testcase_06 AC 36 ms
52,676 KB
testcase_07 AC 37 ms
52,524 KB
testcase_08 AC 50 ms
63,692 KB
testcase_09 AC 47 ms
62,612 KB
testcase_10 AC 46 ms
63,380 KB
testcase_11 AC 43 ms
63,620 KB
testcase_12 AC 49 ms
66,248 KB
testcase_13 AC 163 ms
87,460 KB
testcase_14 AC 207 ms
83,904 KB
testcase_15 AC 157 ms
77,084 KB
testcase_16 AC 161 ms
77,148 KB
testcase_17 AC 160 ms
77,564 KB
testcase_18 AC 86 ms
77,156 KB
testcase_19 AC 86 ms
77,312 KB
testcase_20 AC 83 ms
77,636 KB
testcase_21 AC 163 ms
77,332 KB
testcase_22 AC 166 ms
77,144 KB
testcase_23 AC 158 ms
77,084 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=[]
    wzero=[]
    
    for i in range(H):
        for j in range(W):
            if A[i][j]==0:
                hzero.append(i)
                wzero.append(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=0
        if len(hzero)>=2 or len(wzero)>=2:
            ans=0
        elif len(hzero)==1:
            if hzero[0]!=r:
                ans=0
            else:
                ans=calc(r,q)
        elif len(wzero)==1:
            if wzero[0]!=q:
                ans=0
            else:
                ans=calc(r,q)
        else:
            ans=calc(r,q)
        print(ans)
                
    
            


main()
0