結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー simansiman
提出日時 2020-02-15 03:49:55
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 640 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-11-16 02:08:32
合計ジャッジ時間 4,939 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 86 ms
12,032 KB
testcase_07 AC 86 ms
12,288 KB
testcase_08 AC 86 ms
12,032 KB
testcase_09 AC 87 ms
12,032 KB
testcase_10 AC 198 ms
21,376 KB
testcase_11 AC 211 ms
22,400 KB
testcase_12 AC 486 ms
29,312 KB
testcase_13 AC 161 ms
18,432 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 236 ms
20,992 KB
testcase_17 WA -
testcase_18 AC 490 ms
29,568 KB
testcase_19 AC 240 ms
20,992 KB
testcase_20 AC 344 ms
29,568 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_a = Hash.new(0)
gcd_counter_b = Hash.new(0)
mod_counter = Hash.new(0)

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

A.each do |a|
  gcd_counter_a[a.gcd(K)] += 1
end

if op == '+'
  A.each do |a|
    if op == '+'
      ans += mod_counter[K - a % K]
    end
  end
else
  gcd_counter_a.each do |a, m|
    gcd_counter_b.each do |b, n|
      next if (a * b) % K != 0

      ans += m * n
    end
  end
end

puts ans
0