結果

問題 No.1141 田グリッド
ユーザー terasaterasa
提出日時 2022-05-30 20:14:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,335 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,004 KB
実行使用メモリ 22,128 KB
最終ジャッジ日時 2023-10-21 00:23:39
合計ジャッジ時間 14,494 ms
ジャッジサーバーID
(参考情報)
judge14 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,260 KB
testcase_01 AC 29 ms
10,260 KB
testcase_02 AC 29 ms
10,260 KB
testcase_03 AC 30 ms
10,264 KB
testcase_04 AC 30 ms
10,260 KB
testcase_05 AC 29 ms
10,260 KB
testcase_06 AC 29 ms
10,260 KB
testcase_07 AC 29 ms
10,260 KB
testcase_08 AC 36 ms
10,548 KB
testcase_09 AC 33 ms
10,424 KB
testcase_10 AC 36 ms
10,560 KB
testcase_11 AC 37 ms
10,628 KB
testcase_12 AC 36 ms
10,584 KB
testcase_13 AC 600 ms
17,704 KB
testcase_14 AC 656 ms
22,128 KB
testcase_15 AC 568 ms
14,332 KB
testcase_16 AC 569 ms
14,324 KB
testcase_17 AC 567 ms
14,360 KB
testcase_18 AC 520 ms
14,708 KB
testcase_19 AC 542 ms
14,496 KB
testcase_20 AC 521 ms
14,420 KB
testcase_21 AC 563 ms
14,356 KB
testcase_22 AC 573 ms
14,360 KB
testcase_23 AC 568 ms
14,320 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
# import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
# pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
mod = 10 ** 9 + 7

R = []
for i in range(H):
    acc = 1
    for j in range(W):
        acc *= A[i][j]
        acc %= mod
    R.append(acc)
C = []
for j in range(W):
    acc = 1
    for i in range(H):
        acc *= A[i][j]
        acc %= mod
    C.append(acc)
S = 1
for i in range(H):
    S *= R[i]
    S %= mod

Q = int(input())
for _ in range(Q):
    r, c = map(lambda x: int(x) - 1, input().split())
    print(S * pow(R[r], mod - 2, mod) * pow(C[c], mod - 2, mod) * A[r][c] % mod)
0