結果

問題 No.1141 田グリッド
ユーザー marroncastlemarroncastle
提出日時 2020-07-31 21:50:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 88,896 KB
最終ジャッジ日時 2024-07-06 17:42:14
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,528 KB
testcase_01 AC 34 ms
52,360 KB
testcase_02 AC 33 ms
53,692 KB
testcase_03 AC 37 ms
53,692 KB
testcase_04 AC 35 ms
52,792 KB
testcase_05 AC 32 ms
52,792 KB
testcase_06 AC 31 ms
52,952 KB
testcase_07 AC 36 ms
54,008 KB
testcase_08 AC 54 ms
66,648 KB
testcase_09 AC 49 ms
63,608 KB
testcase_10 AC 51 ms
67,728 KB
testcase_11 AC 45 ms
64,320 KB
testcase_12 AC 62 ms
69,624 KB
testcase_13 AC 161 ms
88,896 KB
testcase_14 AC 211 ms
85,024 KB
testcase_15 AC 159 ms
79,916 KB
testcase_16 AC 171 ms
80,236 KB
testcase_17 AC 158 ms
80,024 KB
testcase_18 AC 156 ms
79,156 KB
testcase_19 AC 159 ms
79,004 KB
testcase_20 AC 157 ms
79,472 KB
testcase_21 AC 159 ms
79,876 KB
testcase_22 AC 151 ms
79,968 KB
testcase_23 AC 155 ms
80,044 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 #

def solve():
  mod = 10**9+7
  H, W = map(int, input().split())
  h_prod = [1]*H
  w_prod = [1]*W
  A = [list(map(int, input().split())) for _ in range(H)]
  for i in range(H):
    for j in range(W):
      h_prod[i] *= A[i][j]
      w_prod[j] *= A[i][j]
      h_prod[i] %= mod
      w_prod[j] %= mod
  Q = int(input())
  total = 1
  for i in range(H):
    total *= h_prod[i]
    total %= mod
  ans = [total]*Q
  for i in range(Q):
    r,c = map(int, input().split())
    ans[i] *= pow(h_prod[r-1]*w_prod[c-1],mod-2,mod)*A[r-1][c-1]
    ans[i] %= mod
  return ans
print(*solve(),sep='\n')
0