結果

問題 No.1141 田グリッド
ユーザー anagohirameanagohirame
提出日時 2020-07-31 22:48:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-07-06 20:09:35
合計ジャッジ時間 4,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,352 KB
testcase_01 AC 32 ms
53,412 KB
testcase_02 AC 33 ms
53,252 KB
testcase_03 AC 30 ms
53,144 KB
testcase_04 AC 31 ms
52,868 KB
testcase_05 AC 32 ms
53,796 KB
testcase_06 AC 31 ms
53,484 KB
testcase_07 AC 32 ms
53,512 KB
testcase_08 AC 43 ms
64,832 KB
testcase_09 AC 42 ms
62,576 KB
testcase_10 AC 44 ms
64,648 KB
testcase_11 AC 42 ms
63,208 KB
testcase_12 AC 44 ms
66,880 KB
testcase_13 AC 164 ms
88,960 KB
testcase_14 AC 191 ms
83,348 KB
testcase_15 AC 157 ms
77,492 KB
testcase_16 AC 156 ms
77,524 KB
testcase_17 AC 158 ms
77,540 KB
testcase_18 AC 77 ms
77,620 KB
testcase_19 AC 82 ms
77,324 KB
testcase_20 AC 80 ms
77,540 KB
testcase_21 AC 162 ms
77,640 KB
testcase_22 AC 157 ms
77,540 KB
testcase_23 AC 155 ms
77,660 KB
testcase_24 AC 87 ms
77,424 KB
testcase_25 AC 88 ms
77,692 KB
testcase_26 AC 91 ms
78,004 KB
testcase_27 AC 91 ms
78,000 KB
testcase_28 AC 93 ms
77,916 KB
testcase_29 AC 78 ms
77,268 KB
testcase_30 AC 86 ms
77,688 KB
testcase_31 AC 81 ms
77,320 KB
testcase_32 AC 82 ms
77,420 KB
testcase_33 AC 81 ms
77,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

MOD = 10**9+7

H, W = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(H)]

r_zero = [0 for _ in range(H)]
c_zero = [0 for _ in range(W)]
tot_zero = 0
r = [1 for _ in range(H)]
c = [1 for _ in range(W)]
tot = 1
for h in range(H):
	for w in range(W):
		if a[h][w] == 0:
			r_zero[h] += 1
			c_zero[w] += 1
			tot_zero += 1
		else:
			r[h] *= a[h][w]
			r[h] %= MOD
			c[w] *= a[h][w]
			c[w] %= MOD
			tot *= a[h][w]
			tot %= MOD

for _ in range(int(input())):
	x, y = map(int, input().split())
	x, y = x-1, y-1
	res = tot
	if r_zero[x] + c_zero[y] - (a[x][y] == 0) != tot_zero:
		print(0)
	else:
		res *= pow(r[x], MOD-2, MOD) * pow(c[y], MOD-2, MOD)
		if a[x][y] != 0:
			res *= a[x][y]
		print(res%MOD)
0