結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-02-14 23:11:37
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 527 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 56,320 KB
最終ジャッジ日時 2024-11-16 01:27:35
合計ジャッジ時間 11,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
18,980 KB
testcase_01 AC 89 ms
40,320 KB
testcase_02 AC 87 ms
18,848 KB
testcase_03 AC 85 ms
12,032 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 86 ms
12,288 KB
testcase_08 AC 85 ms
12,288 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 194 ms
20,608 KB
testcase_11 AC 232 ms
22,016 KB
testcase_12 TLE -
testcase_13 AC 174 ms
18,432 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 215 ms
20,480 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 AC 1,381 ms
20,608 KB
testcase_20 AC 308 ms
56,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m, k = gets.chomp.split.map(&:to_i)

b = gets.chomp.split
op = b.shift
a = [] * n
h = Hash.new(0)
b.each do |bi|
  h[bi.to_i % k] += 1
end
b.sort!
n.times do
  a << gets.chomp.to_i % k
end

ans = 0
hh = {}

if op == '+'
  a.each do |ai|
    ans += h[k - ai]
  end
else
  ans += h[0] * n
  a.each do |ai|
    g = ai.gcd(k)

    next if g == 1

    v = k / g
    if hh[v]
      ans += hh[v]
      next
    end

    sum = 0
    v.step(k, v) do |j|
      sum += h[j]
    end

    hh[v] = sum
    ans += hh[v]
  end
end

puts ans
0