結果

問題 No.1141 田グリッド
ユーザー ntudantuda
提出日時 2024-12-12 20:17:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 637 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-12-12 20:17:09
合計ジャッジ時間 9,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 47 ms
52,224 KB
testcase_08 AC 77 ms
68,096 KB
testcase_09 AC 67 ms
65,152 KB
testcase_10 AC 75 ms
67,584 KB
testcase_11 AC 64 ms
65,280 KB
testcase_12 AC 79 ms
70,272 KB
testcase_13 AC 292 ms
88,576 KB
testcase_14 AC 368 ms
83,072 KB
testcase_15 AC 239 ms
78,256 KB
testcase_16 AC 253 ms
78,208 KB
testcase_17 AC 250 ms
77,952 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 248 ms
77,952 KB
testcase_22 AC 240 ms
78,336 KB
testcase_23 AC 251 ms
77,952 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
H,W = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(H)]
MHR = [1] * H
MWR = [1] * W
total = 1
for h in range(H):
    for w in range(W):
        MHR[h] *= A[h][w]
        MHR[h] %= MOD
        MWR[w] *= A[h][w]
        MWR[w] %= MOD
        total *= A[h][w]
        total %= MOD
for h in range(H):
    MHR[h] = pow(MHR[h],-1,MOD)
for w in range(W):
    MWR[w] = pow(MWR[w],-1,MOD)

for _ in range(int(input())):
    r,c = map(int,input().split())
    r -= 1
    c -= 1
    ans = total * A[r][c]
    ans %= MOD
    ans *= MHR[r]
    ans %= MOD
    ans *= MWR[c]
    ans %= MOD
    print(ans)



0