結果

問題 No.1141 田グリッド
ユーザー rlangevinrlangevin
提出日時 2023-01-31 00:11:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,164 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 88,376 KB
最終ジャッジ日時 2024-06-30 07:55:45
合計ジャッジ時間 6,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 64 ms
68,600 KB
testcase_09 AC 62 ms
67,996 KB
testcase_10 AC 64 ms
70,052 KB
testcase_11 AC 60 ms
68,904 KB
testcase_12 AC 64 ms
70,784 KB
testcase_13 AC 261 ms
88,376 KB
testcase_14 AC 318 ms
83,328 KB
testcase_15 AC 225 ms
78,060 KB
testcase_16 AC 216 ms
77,892 KB
testcase_17 AC 227 ms
78,464 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 224 ms
78,052 KB
testcase_22 AC 213 ms
77,840 KB
testcase_23 AC 220 ms
77,952 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
zx, zy = -1, -1
for i in range(H):
    A.append(list(map(int, input().split())))
    for j in range(W):
        ans *= A[i][j]
        ans %= mod
        if A[i][j] == 0:
            if zx == -1:
                zx, zy = i, j
            else:
                print(0)
                exit()

if zx != -1:
    ans = 1
    for i in range(H):
        for j in range(W):
            if i == zx:
                continue
            if j == zy:
                continue
            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
    if zx == -1:
        print(ans * DH[r] * DW[c] * A[r][c] % mod)
    else:
        if zx == r and zy == c:
            print(ans)
        else:
            print(0)    
0