結果

問題 No.1141 田グリッド
ユーザー ayaoniayaoni
提出日時 2021-01-01 23:07:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 965 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-10-11 12:17:47
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 44 ms
52,480 KB
testcase_06 AC 43 ms
51,840 KB
testcase_07 AC 45 ms
51,968 KB
testcase_08 AC 64 ms
63,616 KB
testcase_09 AC 59 ms
62,592 KB
testcase_10 AC 61 ms
63,744 KB
testcase_11 AC 60 ms
62,976 KB
testcase_12 AC 66 ms
65,664 KB
testcase_13 AC 221 ms
88,832 KB
testcase_14 AC 261 ms
84,224 KB
testcase_15 AC 210 ms
77,952 KB
testcase_16 AC 208 ms
77,312 KB
testcase_17 AC 211 ms
77,440 KB
testcase_18 AC 199 ms
77,696 KB
testcase_19 AC 199 ms
77,056 KB
testcase_20 AC 197 ms
77,696 KB
testcase_21 AC 205 ms
77,312 KB
testcase_22 AC 207 ms
77,824 KB
testcase_23 AC 205 ms
77,440 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

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


H,W = MI()
A = [LI() for _ in range(H)]
mod = 10**9+7

row = []
for i in range(H):
    a = 1
    for j in range(W):
        a *= A[i][j]
        a %= mod
    row.append(a)

column = []
for j in range(W):
    a = 1
    for i in range(H):
        a *= A[i][j]
        a %= mod
    column.append(a)

p = 1
for i in range(H):
    p *= row[i]
    p %= mod

Q = I()
for _ in range(Q):
    r,c = MI()
    r -= 1
    c -= 1
    ans = p*A[r][c]*pow(row[r],mod-2,mod)*pow(column[c],mod-2,mod)
    ans %= mod
    print(ans)
0