結果

問題 No.1141 田グリッド
ユーザー titiatitia
提出日時 2020-07-31 22:09:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 534 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-07-06 18:24:15
合計ジャッジ時間 13,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 33 ms
11,008 KB
testcase_11 AC 33 ms
11,136 KB
testcase_12 AC 32 ms
11,008 KB
testcase_13 AC 621 ms
18,428 KB
testcase_14 AC 674 ms
22,656 KB
testcase_15 AC 605 ms
14,848 KB
testcase_16 AC 600 ms
14,720 KB
testcase_17 AC 599 ms
14,976 KB
testcase_18 AC 542 ms
15,104 KB
testcase_19 AC 531 ms
15,104 KB
testcase_20 AC 550 ms
15,104 KB
testcase_21 AC 607 ms
14,976 KB
testcase_22 AC 595 ms
14,848 KB
testcase_23 AC 603 ms
14,848 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.readline

H,W=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]
mod=1000000007

HM=[-1]*H
WM=[-1]*W

for i in range(H):
    M=1
    for j in range(W):
        M=M*A[i][j]%mod
    HM[i]=M

for i in range(W):
    M=1
    for j in range(H):
        M=M*A[j][i]%mod
    WM[i]=M

M=1
for i in range(H):
    M=M*HM[i]%mod

Q=int(input())
for qu in range(Q):
    r,c=map(int,input().split())
    r-=1
    c-=1

    print(M*A[r][c]*pow(HM[r],mod-2,mod)*pow(WM[c],mod-2,mod)%mod)
    

0