結果
問題 | No.1141 田グリッド |
ユーザー | uni_python |
提出日時 | 2020-08-30 22:42:51 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,968 bytes |
コンパイル時間 | 522 ms |
コンパイル使用メモリ | 82,008 KB |
実行使用メモリ | 105,000 KB |
最終ジャッジ日時 | 2024-11-15 15:43:37 |
合計ジャッジ時間 | 6,163 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,268 KB |
testcase_01 | AC | 36 ms
53,428 KB |
testcase_02 | AC | 35 ms
53,228 KB |
testcase_03 | AC | 35 ms
53,440 KB |
testcase_04 | AC | 35 ms
52,772 KB |
testcase_05 | AC | 36 ms
53,012 KB |
testcase_06 | AC | 35 ms
53,212 KB |
testcase_07 | AC | 36 ms
53,320 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 157 ms
96,096 KB |
testcase_14 | AC | 236 ms
105,000 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 132 ms
81,544 KB |
testcase_19 | AC | 139 ms
81,684 KB |
testcase_20 | AC | 136 ms
82,068 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
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 | - |
ソースコード
import sys input=sys.stdin.readline def I(): return int(input()) def MI(): return map(int, input().split()) def LI(): return list(map(int, input().split())) """ 左上,左下,右上,右下の4方向から累積積を持てば良い """ def main(): mod=10**9+7 H,W=MI() A=[] A.append([1]*(W+2)) for i in range(H): a=[1]+LI()+[1] A.append(a) A.append([1]*(W+2)) lu=[[1]*(W+2) for _ in range(H+2)] ld=[[1]*(W+2) for _ in range(H+2)] ru=[[1]*(W+2) for _ in range(H+2)] rd=[[1]*(W+2) for _ in range(H+2)] for i in range(1,H+1): for j in range(1,W+1): if lu[i-1][j-1]==0: lu[i][j]=0 else: lu[i][j]=((lu[i][j-1]*lu[i-1][j]*A[i][j])//lu[i-1][j-1])%mod for i in range(H,0,-1): for j in range(1,W+1): if ld[i+1][j-1]==0: ld[i][j]=0 else: ld[i][j]=((ld[i][j-1]*ld[i+1][j]*A[i][j])//ld[i+1][j-1])%mod for i in range(1,H+1): for j in range(W,0,-1): if ru[i-1][j+1]==0: ru[i][j]=0 else: ru[i][j]=((ru[i][j+1]*ru[i-1][j]*A[i][j])//ru[i-1][j+1])%mod for i in range(H,0,-1): for j in range(W,0,-1): if rd[i+1][j+1]==0: rd[i][j]=0 else: rd[i][j]=((rd[i][j+1]*rd[i+1][j]*A[i][j])//rd[i+1][j+1])%mod Q=I() for _ in range(Q): r,c=MI() ans=lu[r-1][c-1] * ru[r-1][c+1] * ld[r+1][c-1] * rd[r+1][c+1] print(ans%mod) # for i in range(H+2): # print(lu[i]) # print() # for i in range(H+2): # print(ru[i]) # print() # for i in range(H+2): # print(ld[i]) # print() # for i in range(H+2): # print(rd[i]) main()