結果

問題 No.546 オンリー・ワン
ユーザー ueyukiueyuki
提出日時 2017-07-22 23:51:09
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-17 16:00:54
合計ジャッジ時間 1,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 WA -
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 85 ms
12,288 KB
testcase_05 WA -
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 79 ms
12,288 KB
testcase_08 AC 81 ms
12,032 KB
testcase_09 AC 86 ms
12,032 KB
testcase_10 AC 90 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def gcd(a, b)
  if b > 0
    gcd(b, a % b)
  else
    return a
  end
end

def lcm(a, b)
  a * b / gcd(a, b)
end


n, l, h = gets.chomp.split.map(&:to_i)
c = gets.chomp.split.map(&:to_i)

aunswer = 0

0.upto(n-1) do |i|
  aunswer += ((h / c[i]) - (l - 1) / c[i])
end

2.upto(n) do |i|
  c.combination(i) { |com|
    lc = com.inject(1) { |a, b|
      lcm(a, b)
    }

    tmp = (h / lc) - (l / lc)
    if i % 2 == 0
      aunswer += tmp * -i
    else
      aunswer += tmp * i
    end
  }
end

puts aunswer
0