結果

問題 No.1141 田グリッド
ユーザー trineutrontrineutron
提出日時 2020-08-02 07:17:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,054 ms / 2,000 ms
コード長 1,196 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-07-18 03:19:44
合計ジャッジ時間 15,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
11,008 KB
testcase_07 AC 27 ms
11,008 KB
testcase_08 AC 37 ms
11,264 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 38 ms
11,264 KB
testcase_11 AC 41 ms
11,136 KB
testcase_12 AC 38 ms
11,136 KB
testcase_13 AC 931 ms
18,736 KB
testcase_14 AC 1,054 ms
23,168 KB
testcase_15 AC 865 ms
14,848 KB
testcase_16 AC 919 ms
14,848 KB
testcase_17 AC 885 ms
14,848 KB
testcase_18 AC 507 ms
14,976 KB
testcase_19 AC 476 ms
14,848 KB
testcase_20 AC 503 ms
14,848 KB
testcase_21 AC 883 ms
14,976 KB
testcase_22 AC 932 ms
14,976 KB
testcase_23 AC 865 ms
14,976 KB
testcase_24 AC 480 ms
14,848 KB
testcase_25 AC 551 ms
15,232 KB
testcase_26 AC 491 ms
14,976 KB
testcase_27 AC 524 ms
14,848 KB
testcase_28 AC 491 ms
15,232 KB
testcase_29 AC 468 ms
14,976 KB
testcase_30 AC 477 ms
15,104 KB
testcase_31 AC 488 ms
14,976 KB
testcase_32 AC 486 ms
14,976 KB
testcase_33 AC 480 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

h, w = map(int, input().split())
a = [list(map(int, input().split())) for i in range(h)]

product_all = 1
product_row = [1] * h
product_column = [1] * w
zero_all = 0
zero_row = [0] * h
zero_column = [0] * w
for i in range(h):
    for j in range(w):
        if a[i][j]:
            product_all *= a[i][j]
            product_all %= mod
            product_row[i] *= a[i][j]
            product_row[i] %= mod
            product_column[j] *= a[i][j]
            product_column[j] %= mod
        else:
            zero_all += 1
            zero_row[i] += 1
            zero_column[j] += 1

q = int(input())
for i in range(q):
    r, c = map(int, input().split())
    zero_point = 0
    if a[r - 1][c - 1] == 0:
        zero_point += 1
    if a[r - 1][c - 1] and zero_all - zero_row[r - 1] - zero_column[c - 1] + zero_point == 0:
        print(product_all * pow(product_row[r - 1], mod - 2, mod) * pow(product_column[c - 1], mod - 2, mod) * a[r - 1][c - 1] % mod)
    elif zero_all - zero_row[r - 1] - zero_column[c - 1] + zero_point == 0:
        print(product_all * pow(product_row[r - 1], mod - 2, mod) * pow(product_column[c - 1], mod - 2, mod) % mod)
    else:
        print(0)
0