結果

問題 No.1141 田グリッド
ユーザー convexineqconvexineq
提出日時 2021-05-10 07:20:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 88,796 KB
最終ジャッジ日時 2024-09-19 11:46:52
合計ジャッジ時間 6,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,612 KB
testcase_01 AC 32 ms
52,136 KB
testcase_02 AC 35 ms
52,888 KB
testcase_03 AC 35 ms
52,888 KB
testcase_04 AC 34 ms
53,876 KB
testcase_05 AC 33 ms
53,156 KB
testcase_06 AC 33 ms
53,280 KB
testcase_07 AC 36 ms
53,020 KB
testcase_08 AC 56 ms
68,120 KB
testcase_09 AC 50 ms
63,708 KB
testcase_10 AC 59 ms
66,360 KB
testcase_11 AC 51 ms
66,004 KB
testcase_12 AC 63 ms
69,100 KB
testcase_13 AC 236 ms
88,796 KB
testcase_14 AC 277 ms
82,988 KB
testcase_15 AC 226 ms
78,648 KB
testcase_16 AC 228 ms
78,604 KB
testcase_17 AC 236 ms
78,580 KB
testcase_18 AC 186 ms
78,152 KB
testcase_19 AC 178 ms
77,520 KB
testcase_20 AC 194 ms
78,716 KB
testcase_21 AC 228 ms
78,440 KB
testcase_22 AC 227 ms
78,348 KB
testcase_23 AC 223 ms
78,636 KB
testcase_24 AC 189 ms
77,708 KB
testcase_25 AC 187 ms
78,356 KB
testcase_26 AC 193 ms
78,364 KB
testcase_27 AC 195 ms
77,948 KB
testcase_28 AC 186 ms
78,172 KB
testcase_29 AC 189 ms
78,148 KB
testcase_30 AC 194 ms
78,240 KB
testcase_31 AC 183 ms
78,492 KB
testcase_32 AC 189 ms
77,544 KB
testcase_33 AC 183 ms
77,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
h,w = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(h)]
r,zr,c,zc = [1]*h, [0]*h, [1]*w, [0]*w
tot = 1
for i in range(h):
    for j in range(w):
        v = a[i][j]
        if v:
            r[i] = r[i]*v%MOD
            c[j] = c[j]*v%MOD
            tot = tot*v%MOD
        else:
            zr[i] += 1
            zc[j] += 1
zt = sum(zr)

Q = int(input())
for _ in range(Q):
    R,C = map(int,input().split())
    R -= 1
    C -= 1
    if zt - zr[R] - zc[C] + (a[R][C]==0):
        print(0)
    else:
        print(tot*pow(r[R]*c[C]%MOD,MOD-2,MOD)%MOD*max(a[R][C],1)%MOD)
0