結果

問題 No.1141 田グリッド
ユーザー c-yanc-yan
提出日時 2020-08-01 21:55:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 691 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-07-08 08:37:59
合計ジャッジ時間 12,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 34 ms
11,008 KB
testcase_11 AC 35 ms
11,008 KB
testcase_12 AC 33 ms
11,008 KB
testcase_13 AC 560 ms
20,276 KB
testcase_14 AC 691 ms
26,112 KB
testcase_15 AC 552 ms
17,920 KB
testcase_16 AC 543 ms
17,920 KB
testcase_17 AC 530 ms
18,048 KB
testcase_18 AC 332 ms
16,640 KB
testcase_19 AC 330 ms
16,512 KB
testcase_20 AC 329 ms
16,512 KB
testcase_21 AC 552 ms
17,920 KB
testcase_22 AC 544 ms
18,176 KB
testcase_23 AC 550 ms
18,048 KB
testcase_24 AC 322 ms
16,512 KB
testcase_25 AC 338 ms
17,024 KB
testcase_26 AC 329 ms
16,640 KB
testcase_27 AC 337 ms
16,512 KB
testcase_28 AC 341 ms
16,896 KB
testcase_29 AC 323 ms
16,512 KB
testcase_30 AC 331 ms
16,640 KB
testcase_31 AC 341 ms
16,768 KB
testcase_32 AC 325 ms
16,512 KB
testcase_33 AC 322 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
Q = int(input())

m = 1000000007

total = 1
rows = [1] * H
cols = [1] * W
total0 = 0
rows0 = [0] * H
cols0 = [0] * W
for i in range(H):
    for j in range(W):
        x = A[i][j]
        if x == 0:
            total0 += 1
            rows0[i] += 1
            cols0[j] += 1
        else:
            total *= x
            total %= m
            rows[i] *= x
            rows[i] %= m
            cols[j] *= x
            cols[j] %= m

result = []
for _ in range(Q):
    r, c = map(lambda x: int(x) - 1, input().split())
    x = A[r][c]
    t = total0 - rows0[r] - cols0[c]
    if x == 0:
        t += 1
    if t > 0:
        result.append(0)
        continue
    t = total * pow(rows[r], -1, m) % m * pow(cols[c], -1, m) % m
    if x != 0:
        t *= x
        t %= m
    result.append(t)
print(*result, sep='\n')
0