結果

問題 No.1141 田グリッド
ユーザー rlangevinrlangevin
提出日時 2023-01-31 00:05:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 88,416 KB
最終ジャッジ日時 2024-06-30 07:53:11
合計ジャッジ時間 8,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,480 KB
testcase_01 AC 36 ms
52,820 KB
testcase_02 AC 36 ms
52,340 KB
testcase_03 AC 35 ms
52,456 KB
testcase_04 AC 35 ms
53,668 KB
testcase_05 AC 36 ms
53,500 KB
testcase_06 AC 37 ms
52,744 KB
testcase_07 AC 35 ms
52,744 KB
testcase_08 AC 60 ms
69,448 KB
testcase_09 AC 58 ms
68,816 KB
testcase_10 AC 60 ms
68,800 KB
testcase_11 AC 57 ms
68,400 KB
testcase_12 AC 62 ms
70,328 KB
testcase_13 AC 259 ms
88,416 KB
testcase_14 AC 320 ms
83,868 KB
testcase_15 AC 219 ms
78,164 KB
testcase_16 AC 215 ms
78,068 KB
testcase_17 AC 221 ms
78,544 KB
testcase_18 AC 209 ms
78,088 KB
testcase_19 AC 209 ms
78,308 KB
testcase_20 AC 202 ms
78,120 KB
testcase_21 AC 215 ms
78,428 KB
testcase_22 AC 216 ms
78,428 KB
testcase_23 AC 216 ms
78,188 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 #

H, W = map(int, input().split())
mod = 10 ** 9 + 7
A = []
ans = 1
for i in range(H):
    A.append(list(map(int, input().split())))
    for j in range(W):
        ans *= A[i][j]
        ans %= mod
        
DH, DW = [1] * H, [1] * W
for i in range(H):
    for j in range(W):
        DH[i] *= A[i][j]
        DH[i] %= mod
        DW[j] *= A[i][j]
        DW[j] %= mod
    
for i in range(H):
    DH[i] = pow(DH[i], mod - 2, mod)
for j in range(W):
    DW[j] = pow(DW[j], mod - 2, mod)
        
    
Q = int(input())
for i in range(Q):
    r, c = map(int, input().split())
    r, c = r - 1 , c - 1
    print(ans * DH[r] * DW[c] * A[r][c] % mod)    
0