結果

問題 No.1141 田グリッド
ユーザー Coki628Coki628
提出日時 2020-11-27 02:10:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,471 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 93,596 KB
最終ジャッジ日時 2024-07-23 21:16:13
合計ジャッジ時間 8,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,912 KB
testcase_01 AC 38 ms
53,464 KB
testcase_02 AC 39 ms
53,680 KB
testcase_03 AC 40 ms
53,432 KB
testcase_04 AC 40 ms
53,240 KB
testcase_05 AC 39 ms
53,812 KB
testcase_06 AC 39 ms
53,904 KB
testcase_07 AC 39 ms
53,084 KB
testcase_08 AC 55 ms
67,012 KB
testcase_09 AC 52 ms
65,368 KB
testcase_10 AC 55 ms
66,176 KB
testcase_11 AC 53 ms
65,872 KB
testcase_12 AC 59 ms
69,056 KB
testcase_13 AC 260 ms
93,596 KB
testcase_14 AC 321 ms
89,852 KB
testcase_15 AC 261 ms
79,236 KB
testcase_16 AC 262 ms
79,580 KB
testcase_17 AC 264 ms
79,268 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 260 ms
78,968 KB
testcase_22 AC 261 ms
79,344 KB
testcase_23 AC 262 ms
79,212 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 #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for k in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for k in range(c)] for k in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10**9)
INF = 10**19
MOD = 10**9 + 7
EPS = 10**-10

def div(x, y, MOD): return x * pow(y, MOD-2, MOD) % MOD

H, W = MAP()
grid = list2d(H+2 ,W+2, 1)
for i in range(1, H+1):
    grid[i] = [1] + LIST() + [1]

for i in range(H+2):
    for j in range(W+1):
        grid[i][j+1] *= grid[i][j]
        grid[i][j+1] %= MOD
for j in range(W+2):
    for i in range(H+1):
        grid[i+1][j] *= grid[i][j]
        grid[i+1][j] %= MOD

Q = INT()
for _ in range(Q):
    r, c = MAP()

    rd = div(grid[H+1][W+1] * grid[r][c], grid[H+1][c] * grid[r][W+1], MOD)
    ru = div(grid[r-1][W+1], grid[r-1][c], MOD)
    ld = div(grid[H+1][c-1], grid[r][c-1], MOD)
    lu = grid[r-1][c-1]
    res = 1
    if rd:
        res *= rd
    if ru:
        res *= ru
    if ld:
        res *= ld
    if lu:
        res *= lu
    res %= MOD
    # res = rd * ru * ld * lu % MOD
    print(res)
0