結果

問題 No.1141 田グリッド
ユーザー simansiman
提出日時 2022-07-25 08:19:02
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-07-07 05:07:12
合計ジャッジ時間 10,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
12,032 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 71 ms
12,160 KB
testcase_03 AC 70 ms
12,032 KB
testcase_04 AC 71 ms
12,160 KB
testcase_05 AC 70 ms
12,160 KB
testcase_06 AC 71 ms
12,032 KB
testcase_07 AC 72 ms
12,160 KB
testcase_08 AC 77 ms
12,160 KB
testcase_09 AC 75 ms
12,160 KB
testcase_10 AC 77 ms
12,160 KB
testcase_11 AC 78 ms
12,288 KB
testcase_12 AC 77 ms
12,288 KB
testcase_13 AC 326 ms
17,920 KB
testcase_14 AC 378 ms
16,000 KB
testcase_15 AC 316 ms
13,056 KB
testcase_16 AC 323 ms
13,952 KB
testcase_17 AC 320 ms
13,696 KB
testcase_18 AC 280 ms
13,568 KB
testcase_19 AC 282 ms
13,824 KB
testcase_20 AC 282 ms
13,952 KB
testcase_21 AC 315 ms
13,440 KB
testcase_22 AC 314 ms
13,568 KB
testcase_23 AC 316 ms
13,696 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 -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Integer
  def mod_inverse(mod)
    self.pow(mod - 2, mod)
  end
end

H, W = gets.split.map(&:to_i)
A = H.times.map { gets.split.map(&:to_i) }
MOD = 10 ** 9 + 7
R = []

all = 1

H.times do |i|
  W.times do |j|
    all *= A[i][j]
    all %= MOD
  end
end

H.times do |i|
  row = 1

  W.times do |j|
    row *= A[i][j]
    row %= MOD
  end

  R << row
end

C = []

W.times do |j|
  col = 1

  H.times do |i|
    col *= A[i][j]
    col %= MOD
  end

  C << col
end

Q = gets.to_i
Q.times do
  r, c = gets.split.map(&:to_i)

  ans = (all * R[r - 1].mod_inverse(MOD) * C[c - 1].mod_inverse(MOD) * A[r - 1][c - 1]) % MOD

  puts ans
end
0