結果

問題 No.1141 田グリッド
ユーザー anagohirameanagohirame
提出日時 2020-07-31 22:37:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 816 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 88,796 KB
最終ジャッジ日時 2024-07-06 19:51:56
合計ジャッジ時間 4,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,788 KB
testcase_01 AC 33 ms
53,056 KB
testcase_02 AC 33 ms
53,536 KB
testcase_03 AC 34 ms
52,720 KB
testcase_04 AC 34 ms
52,332 KB
testcase_05 AC 32 ms
53,316 KB
testcase_06 AC 32 ms
52,824 KB
testcase_07 AC 32 ms
53,540 KB
testcase_08 AC 45 ms
64,852 KB
testcase_09 AC 43 ms
63,436 KB
testcase_10 AC 45 ms
65,356 KB
testcase_11 AC 42 ms
64,264 KB
testcase_12 AC 48 ms
66,852 KB
testcase_13 AC 174 ms
88,796 KB
testcase_14 AC 194 ms
83,872 KB
testcase_15 AC 161 ms
77,672 KB
testcase_16 AC 168 ms
77,492 KB
testcase_17 AC 168 ms
77,816 KB
testcase_18 AC 82 ms
77,344 KB
testcase_19 AC 80 ms
77,276 KB
testcase_20 AC 81 ms
77,368 KB
testcase_21 AC 163 ms
77,680 KB
testcase_22 AC 160 ms
77,684 KB
testcase_23 AC 161 ms
77,596 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
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)]
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
		else:
			r[h] *= a[h][w]
			r[h] %= MOD
			c[w] *= a[h][w]
			c[w] %= MOD
			tot *= a[h][w]
			tot %= MOD
r_zero_sum = sum(r_zero)
c_zero_sum = sum(c_zero)

for _ in range(int(input())):
	x, y = map(int, input().split())
	x, y = x-1, y-1
	res = tot
	if r_zero_sum - r_zero[x] or c_zero_sum - c_zero[y]:
		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