結果

問題 No.1006 Share an Integer
ユーザー simansiman
提出日時 2020-09-11 06:18:42
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 769 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-06-06 21:23:46
合計ジャッジ時間 20,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 93 ms
12,160 KB
testcase_02 AC 82 ms
11,904 KB
testcase_03 AC 79 ms
11,904 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 82 ms
12,032 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 1,153 ms
21,120 KB
testcase_12 AC 1,988 ms
27,136 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,839 ms
25,600 KB
testcase_16 AC 875 ms
18,816 KB
testcase_17 AC 1,235 ms
21,120 KB
testcase_18 AC 1,804 ms
25,856 KB
testcase_19 AC 1,694 ms
25,216 KB
testcase_20 AC 1,863 ms
26,112 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

X = gets.to_i

SPF = Array.new(X + 1, -1)
SPF[0] = 0
SPF[1] = 1

2.upto(X) do |x|
  next if SPF[x] != -1

  x.step(X, x) do |n|
    next if SPF[n] != -1

    SPF[n] = x
  end
end

def divisor_count(x)
  res = 1
  cur = -1
  cnt = 0

  while x != 1
    f = SPF[x]

    if cur != f
      res *= (cnt + 1)
      cur = f
      cnt = 1
    else
      cnt += 1
    end

    x /= f
  end

  res * (cnt + 1)
end

min_diff = Float::INFINITY
ans = []

1.upto(X / 2) do |a|
  b = X - a
  v1 = a - divisor_count(a)
  v2 = b - divisor_count(b)
  diff = (v1 - v2).abs

  if min_diff > diff
    min_diff = diff
    ans = [[a, b]]
    ans << [b, a] if a != b
  elsif min_diff == diff
    ans << [a, b]
    ans << [b, a] if a != b
  end
end

puts ans.sort.map { |nums| nums.join(' ') }
0