結果

問題 No.1141 田グリッド
ユーザー googol_S0googol_S0
提出日時 2020-08-01 00:45:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 93,452 KB
最終ジャッジ日時 2024-07-06 23:02:45
合計ジャッジ時間 4,599 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,732 KB
testcase_01 AC 32 ms
52,668 KB
testcase_02 AC 30 ms
52,808 KB
testcase_03 AC 32 ms
52,884 KB
testcase_04 AC 31 ms
53,116 KB
testcase_05 AC 36 ms
53,936 KB
testcase_06 AC 32 ms
52,464 KB
testcase_07 AC 32 ms
53,176 KB
testcase_08 AC 42 ms
64,068 KB
testcase_09 AC 42 ms
63,472 KB
testcase_10 AC 42 ms
64,632 KB
testcase_11 AC 43 ms
64,636 KB
testcase_12 AC 47 ms
66,112 KB
testcase_13 AC 136 ms
93,452 KB
testcase_14 AC 163 ms
93,208 KB
testcase_15 AC 128 ms
83,464 KB
testcase_16 AC 134 ms
83,524 KB
testcase_17 AC 131 ms
83,832 KB
testcase_18 AC 88 ms
83,840 KB
testcase_19 AC 92 ms
83,764 KB
testcase_20 AC 85 ms
83,404 KB
testcase_21 AC 131 ms
83,964 KB
testcase_22 AC 131 ms
83,624 KB
testcase_23 AC 135 ms
83,688 KB
testcase_24 AC 98 ms
83,772 KB
testcase_25 AC 101 ms
84,064 KB
testcase_26 AC 101 ms
83,892 KB
testcase_27 AC 96 ms
83,780 KB
testcase_28 AC 96 ms
84,012 KB
testcase_29 AC 88 ms
83,688 KB
testcase_30 AC 89 ms
83,868 KB
testcase_31 AC 89 ms
83,668 KB
testcase_32 AC 89 ms
83,860 KB
testcase_33 AC 87 ms
84,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
S=sys.stdin.readlines()
H,W=map(int,S[0].split())
A=[list(map(int,S[i+1].split())) for i in range(H)]
mod=10**9+7
M1=[1]*H
C1=[0]*H
M2=[1]*W
C2=[0]*W
MA=1
CA=0
for i in range(H):
  for j in range(W):
    if A[i][j]:
      M1[i]=M1[i]*A[i][j]%mod
      M2[j]=M2[j]*A[i][j]%mod
      MA=MA*A[i][j]%mod
    else:
      C1[i]+=1
      C2[j]+=1
      CA+=1
Q=int(S[H+1])
r,c=0,0
for i in range(Q):
  r,c=map(int,S[H+2+i].split())
  r,c=r-1,c-1
  if CA-C1[r]-C2[c]+(A[r][c]==0):
    print(0)
  else:
    if A[r][c]:
      print(MA*pow(M1[r]*M2[c],mod-2,mod)*A[r][c]%mod)
    else:
      print(MA*pow(M1[r]*M2[c],mod-2,mod)%mod)
0