結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー simansiman
提出日時 2020-02-14 23:52:34
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 550 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-11-16 02:01:46
合計ジャッジ時間 12,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
17,408 KB
testcase_01 AC 85 ms
41,856 KB
testcase_02 AC 89 ms
17,536 KB
testcase_03 AC 84 ms
41,600 KB
testcase_04 AC 84 ms
17,408 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 84 ms
12,288 KB
testcase_07 AC 83 ms
12,160 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 AC 84 ms
12,032 KB
testcase_10 AC 185 ms
20,992 KB
testcase_11 AC 204 ms
22,144 KB
testcase_12 TLE -
testcase_13 AC 167 ms
18,176 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 209 ms
21,248 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 294 ms
50,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

N, M, K = gets.split.map(&:to_i)
op, *B = gets.chomp.split
B.map!(&:to_i)
A = N.times.map { gets.to_i }
ans = 0
gcd_counter = Hash.new(0)
mod_counter = Hash.new(0)

B.each do |b|
  mod_counter[b % K] += 1
  gcd_counter[b.gcd(K)] += 1
end

A.each do |a|
  if op == '+'
    mk = a % K
    ans += mod_counter[K - mk]
  else
    if a % K == 0
      ans += M
    else
      gcd_counter.each do |e, cnt|
        ans += cnt if (e * a) % K == 0
      end
    end
  end
end

puts ans
0