結果

問題 No.1243 約数加算
ユーザー simansiman
提出日時 2020-10-05 05:16:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-19 19:12:52
合計ジャッジ時間 1,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 87 ms
12,032 KB
testcase_04 AC 97 ms
12,416 KB
testcase_05 AC 98 ms
12,288 KB
testcase_06 AC 101 ms
12,288 KB
testcase_07 AC 95 ms
12,160 KB
testcase_08 AC 100 ms
12,544 KB
testcase_09 AC 91 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:5: warning: assigned but unused variable - la
Syntax OK

ソースコード

diff #

T = gets.to_i

def solver(a, b)
  ans = []
  la = a.bit_length
  lb = b.bit_length

  l = [*0...lb].reverse.find { |i| a[i] != b[i] }

  l.times do |i|
    if a[i] == 1
      ans << 2.pow(i)
      a += 2.pow(i)
    end
  end

  (lb - 2).downto(0) do |i|
    if b[i] == 1 && a[i] == 0
      ans << 2.pow(i)
      a += 2.pow(i)
    end
  end

  puts ans.size
  puts ans.join(' ')
end

T.times do
  a, b = gets.split.map(&:to_i)

  solver(a, b)
end
0