結果

問題 No.1141 田グリッド
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-23 21:17:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 89,780 KB
最終ジャッジ日時 2024-09-21 16:32:23
合計ジャッジ時間 6,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 52 ms
62,848 KB
testcase_09 AC 52 ms
62,208 KB
testcase_10 AC 52 ms
62,208 KB
testcase_11 AC 51 ms
61,952 KB
testcase_12 AC 58 ms
64,000 KB
testcase_13 AC 156 ms
89,780 KB
testcase_14 AC 173 ms
82,688 KB
testcase_15 AC 108 ms
78,720 KB
testcase_16 AC 109 ms
78,208 KB
testcase_17 AC 108 ms
78,336 KB
testcase_18 AC 96 ms
78,420 KB
testcase_19 AC 97 ms
78,492 KB
testcase_20 AC 99 ms
78,592 KB
testcase_21 AC 105 ms
78,476 KB
testcase_22 AC 104 ms
78,568 KB
testcase_23 AC 107 ms
78,276 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
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10 ** 9 + 7

H, W = map(int, input().split())
A = tuple(tuple(map(int, input().split())) for _ in range(H))

ALL = 1
row = [1] * H
col = [1] * W
for i, ai in enumerate(A):
    for j, a in enumerate(ai):
        row[i] *= a
        col[j] *= a
        ALL *= a
        row[i] %= mod
        col[j] %= mod
        ALL %= mod

for i in range(H):
    row[i] = pow(row[i], mod - 2, mod)
for j in range(W):
    col[j] = pow(col[j], mod - 2, mod)


Q = int(input())
for _ in range(Q):
    r, c = map(int, input().split())
    r -= 1
    c -= 1
    res = ALL * row[r] * col[c] * A[r][c] % mod
    print(res)
0