結果

問題 No.688 E869120 and Constructing Array 2
ユーザー simansiman
提出日時 2021-02-18 07:45:09
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,488 KB
最終ジャッジ日時 2024-09-14 15:42:22
合計ジャッジ時間 4,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

require 'prime'

K = gets.to_i
k = K
cnt = 0

while k % 2 == 0
  k /= 2
  cnt += 1
end

def f(n)
  n * (n - 1) / 2
end

cnt.downto(1) do |x|
  ng = 0
  ok = 10 ** 7

  while (ok - ng).abs >= 2
    n = (ok + ng) / 2

    if k <= f(n)
      ok = n
    else
      ng = n
    end
  end

  if f(ok) == k
    puts cnt + ok
    puts [[0] * cnt + [1] * ok].join(' ')
    exit
  end

  k *= 2
end

0