結果

問題 No.1141 田グリッド
ユーザー terasaterasa
提出日時 2022-05-30 20:13:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,331 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 87,932 KB
最終ジャッジ日時 2023-10-21 00:23:19
合計ジャッジ時間 9,100 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,664 KB
testcase_01 AC 48 ms
55,664 KB
testcase_02 AC 44 ms
55,664 KB
testcase_03 AC 43 ms
55,664 KB
testcase_04 AC 44 ms
55,664 KB
testcase_05 AC 44 ms
55,664 KB
testcase_06 AC 45 ms
55,664 KB
testcase_07 AC 43 ms
55,664 KB
testcase_08 AC 57 ms
66,616 KB
testcase_09 AC 56 ms
64,564 KB
testcase_10 AC 58 ms
66,616 KB
testcase_11 AC 56 ms
66,612 KB
testcase_12 AC 63 ms
68,692 KB
testcase_13 AC 224 ms
87,932 KB
testcase_14 AC 266 ms
83,464 KB
testcase_15 AC 213 ms
77,776 KB
testcase_16 AC 213 ms
77,768 KB
testcase_17 AC 218 ms
77,792 KB
testcase_18 AC 218 ms
79,184 KB
testcase_19 AC 216 ms
79,108 KB
testcase_20 AC 214 ms
79,120 KB
testcase_21 AC 216 ms
77,848 KB
testcase_22 AC 216 ms
77,844 KB
testcase_23 AC 215 ms
77,844 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