結果
問題 | No.1141 田グリッド |
ユーザー | H3PO4 |
提出日時 | 2020-08-01 09:17:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 923 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 49,244 KB |
最終ジャッジ日時 | 2024-07-07 15:16:27 |
合計ジャッジ時間 | 22,937 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 31 |
ソースコード
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=np.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)