結果

問題 No.1141 田グリッド
ユーザー googol_S0googol_S0
提出日時 2020-08-01 00:41:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,356 KB
最終ジャッジ日時 2024-07-06 23:01:42
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,256 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 31 ms
52,480 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 47 ms
63,360 KB
testcase_09 AC 48 ms
62,208 KB
testcase_10 AC 45 ms
63,360 KB
testcase_11 AC 43 ms
62,976 KB
testcase_12 AC 48 ms
66,048 KB
testcase_13 AC 139 ms
93,356 KB
testcase_14 AC 177 ms
92,708 KB
testcase_15 AC 140 ms
83,456 KB
testcase_16 AC 138 ms
83,488 KB
testcase_17 AC 140 ms
83,584 KB
testcase_18 AC 92 ms
83,968 KB
testcase_19 AC 96 ms
83,404 KB
testcase_20 AC 92 ms
83,200 KB
testcase_21 AC 130 ms
84,060 KB
testcase_22 AC 149 ms
83,556 KB
testcase_23 AC 128 ms
83,624 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 95 ms
83,888 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 89 ms
83,956 KB
testcase_33 AC 91 ms
83,712 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:
    print(MA*pow(M1[r]*M2[c],mod-2,mod)*A[r][c]%mod)
0