結果

問題 No.1141 田グリッド
ユーザー qumazakiqumazaki
提出日時 2020-09-08 17:57:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 992 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 111,620 KB
最終ジャッジ日時 2024-05-07 10:00:32
合計ジャッジ時間 7,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 50 ms
62,208 KB
testcase_09 AC 50 ms
61,312 KB
testcase_10 AC 50 ms
62,336 KB
testcase_11 AC 50 ms
62,720 KB
testcase_12 AC 49 ms
62,080 KB
testcase_13 AC 198 ms
109,756 KB
testcase_14 AC 193 ms
109,824 KB
testcase_15 AC 198 ms
108,672 KB
testcase_16 AC 198 ms
108,800 KB
testcase_17 AC 197 ms
109,184 KB
testcase_18 AC 108 ms
110,052 KB
testcase_19 AC 116 ms
111,232 KB
testcase_20 AC 109 ms
109,824 KB
testcase_21 AC 201 ms
108,672 KB
testcase_22 AC 200 ms
108,672 KB
testcase_23 AC 199 ms
109,056 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 119 ms
109,184 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 115 ms
111,248 KB
testcase_33 AC 114 ms
111,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

h,w = list(map(int,readline().split()))
data = list(map(int,read().split()))
a = data[:h*w]
q = data[h*w]
rc = data[h*w+1:]
mod = 10**9+7

cnt0 = 0
tot = 1
cnt0_h = [0]*h
cnt0_w = [0]*w
tot_h = [1]*h
tot_w = [1]*w
for i in range(h):
    for j in range(w):
        aij = a[i*w+j]
        if(aij==0):
            cnt0 += 1
            cnt0_h[i] += 1
            cnt0_w[j] += 1
        else:
            tot *= aij
            tot %= mod
            tot_h[i] *= aij
            tot_h[i] %= mod
            tot_w[j] *= aij
            tot_w[j] %= mod

ans =[]
it = iter(rc)
for r,c in zip(it,it):
    r -= 1
    c -= 1
    num0 = cnt0 - cnt0_h[r] - cnt0_w[c] + (a[r*w+c]==0)
    if(num0>0):
        ans.append(0)
        continue
    ans_i = tot * pow(tot_h[r],mod-2,mod) * pow(tot_w[c],mod-2,mod) * a[r*w+c]
    ans_i %= mod
    ans.append(ans_i)

print('\n'.join(map(str,ans)))
0