結果

問題 No.546 オンリー・ワン
ユーザー ngng628ngng628
提出日時 2024-07-08 04:42:49
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 333 bytes
コンパイル時間 14,228 ms
コンパイル使用メモリ 294,968 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 04:43:04
合計ジャッジ時間 15,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 RE -
testcase_08 AC 2 ms
5,376 KB
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, lo, hi = read_line.split.map &.to_i64
c = read_line.split.map &.to_i64

ans = (1...1 << n).sum { |mask|
  l = (0...n)
        .select { |i| mask.bit(i) == 1 }
        .to_a.reduce(1_i64) { |acc, i|
          acc.lcm(c[i])
        }

  cnt = hi // l - (lo - 1) // l

  k = mask.popcount.to_i64
  k.odd? ? k*cnt : -k*cnt
}

puts ans
0