結果

問題 No.1141 田グリッド
ユーザー anagohirameanagohirame
提出日時 2020-07-31 22:06:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 88,320 KB
最終ジャッジ日時 2024-07-06 18:16:29
合計ジャッジ時間 6,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
52,224 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 41 ms
51,584 KB
testcase_08 AC 57 ms
63,360 KB
testcase_09 AC 52 ms
62,080 KB
testcase_10 AC 55 ms
63,488 KB
testcase_11 AC 53 ms
62,720 KB
testcase_12 AC 60 ms
64,640 KB
testcase_13 AC 196 ms
88,320 KB
testcase_14 AC 237 ms
83,276 KB
testcase_15 AC 187 ms
77,376 KB
testcase_16 AC 189 ms
77,568 KB
testcase_17 AC 194 ms
77,488 KB
testcase_18 AC 183 ms
77,576 KB
testcase_19 AC 185 ms
77,568 KB
testcase_20 AC 181 ms
77,336 KB
testcase_21 AC 188 ms
77,696 KB
testcase_22 AC 188 ms
77,520 KB
testcase_23 AC 187 ms
77,528 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 = [1 for _ in range(H)]
c = [1 for _ in range(W)]
tot = 1
for h in range(H):
	for w in range(W):
		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())
	print((tot * pow(r[x-1], MOD-2, MOD) * pow(c[y-1], MOD-2, MOD) * a[x-1][y-1]) % MOD)
0