結果

問題 No.1141 田グリッド
ユーザー H3PO4H3PO4
提出日時 2023-07-15 09:41:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,365 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 76,060 KB
最終ジャッジ日時 2024-09-16 17:57:25
合計ジャッジ時間 35,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
44,256 KB
testcase_01 AC 529 ms
44,264 KB
testcase_02 AC 534 ms
43,864 KB
testcase_03 AC 531 ms
44,256 KB
testcase_04 AC 533 ms
44,128 KB
testcase_05 AC 531 ms
44,140 KB
testcase_06 AC 528 ms
44,260 KB
testcase_07 AC 530 ms
43,872 KB
testcase_08 AC 535 ms
43,868 KB
testcase_09 AC 531 ms
43,872 KB
testcase_10 AC 540 ms
44,512 KB
testcase_11 AC 555 ms
45,148 KB
testcase_12 AC 536 ms
43,872 KB
testcase_13 AC 1,122 ms
65,252 KB
testcase_14 AC 1,365 ms
76,060 KB
testcase_15 AC 1,248 ms
65,572 KB
testcase_16 AC 1,257 ms
65,804 KB
testcase_17 AC 1,261 ms
65,520 KB
testcase_18 AC 1,163 ms
52,944 KB
testcase_19 AC 1,170 ms
53,640 KB
testcase_20 AC 1,184 ms
53,360 KB
testcase_21 AC 1,254 ms
65,840 KB
testcase_22 AC 1,249 ms
65,848 KB
testcase_23 AC 1,244 ms
66,144 KB
testcase_24 AC 1,201 ms
62,408 KB
testcase_25 AC 1,187 ms
62,740 KB
testcase_26 AC 1,225 ms
62,352 KB
testcase_27 AC 1,212 ms
62,652 KB
testcase_28 AC 1,212 ms
62,188 KB
testcase_29 AC 1,192 ms
59,188 KB
testcase_30 AC 1,187 ms
56,200 KB
testcase_31 AC 1,145 ms
53,228 KB
testcase_32 AC 1,228 ms
61,552 KB
testcase_33 AC 1,203 ms
61,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

MOD = 1000000007
mul = np.frompyfunc(lambda x, y: x * y % MOD, 2, 1)
int1 = lambda x: int(x) - 1

H, W = map(int, input().split())
A = np.array([tuple(map(int, input().split())) for _ in range(H)], dtype=object)

Au = mul.accumulate(A, axis=0)
Ad = np.flipud(mul.accumulate(np.flipud(A), axis=0))

Aul = mul.accumulate(Au, axis=1).tolist()
Aur = np.fliplr(mul.accumulate(np.fliplr(Au), axis=1)).tolist()
Adl = mul.accumulate(Ad, axis=1).tolist()
Adr = np.fliplr(mul.accumulate(np.fliplr(Ad), axis=1)).tolist()

Q = int(input())
for _ in range(Q):
    ans = 1
    r, c = map(int1, input().split())
    if 0 < r and 0 < c:
        ans = ans * Aul[r - 1][c - 1] % MOD
    if 0 < r and c < W - 1:
        ans = ans * Aur[r - 1][c + 1] % MOD
    if r < H - 1 and 0 < c:
        ans = ans * Adl[r + 1][c - 1] % MOD
    if r < H - 1 and c < W - 1:
        ans = ans * Adr[r + 1][c + 1] % MOD
    print(ans)
0