結果

問題 No.2266 Fractions (hard)
ユーザー Lisp_CoderLisp_Coder
提出日時 2023-04-14 23:01:50
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 822 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-04-18 20:38:06
合計ジャッジ時間 14,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:27: warning: assigned but unused variable - primes
Syntax OK

ソースコード

diff #

require 'prime'

def floor_sum(n, m, a, b)
  ans = 0
  if a >= m
    ans += (n - 1) * n * (a / m) / 2
    a %= m
  end
  if b >= m
    ans += n * (b / m)
    b %= m
  end

  y_max = (a * n + b) / m
  x_max = y_max * m - b
  if y_max == 0
    return ans
  end
  ans += (n - (x_max + a - 1) / a) * y_max
  ans += floor_sum(y_max, a, m, (a - x_max % a) % a)
end

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

fractions = []
(1..n).each do |i|
  primes = i.prime_division.map(&:first)
  divisors = []
  (1..i).each do |j|
    if i % j == 0
      divisors.push(j)
    end
  end
  divisors.each do |d|
    if d.gcd(i) == 1
      fractions.push(Rational(d, i))
    end
  end
end

fractions = fractions.sort.uniq
if k > fractions.length
  puts "-1"
else
  puts fractions[k - 1].numerator.to_s + "/" + fractions[k - 1].denominator.to_s
end
0