結果

問題 No.1243 約数加算
ユーザー yudedakoyudedako
提出日時 2022-01-26 16:31:07
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 967 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 10,936 ms
コンパイル使用メモリ 261,496 KB
実行使用メモリ 63,888 KB
最終ジャッジ日時 2024-06-02 10:51:37
合計ジャッジ時間 21,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 845 ms
63,412 KB
testcase_01 AC 830 ms
63,504 KB
testcase_02 AC 842 ms
63,764 KB
testcase_03 AC 854 ms
63,504 KB
testcase_04 AC 920 ms
63,744 KB
testcase_05 AC 938 ms
63,888 KB
testcase_06 AC 946 ms
63,888 KB
testcase_07 AC 890 ms
63,652 KB
testcase_08 AC 967 ms
63,732 KB
testcase_09 AC 858 ms
63,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.collection.mutable.ArrayBuffer
import scala.io.StdIn.*
import scala.math.*

@main def main =
  val testCase = readLine().toInt
  for _ <- 0 until testCase do
    val Array(a, b) = readLine().split(' ').map(_.toLong)
    var current = a
    val op = ArrayBuffer[Long]()
    for i <- 0 until 60 do
      val d = 1L << i
      if (current & d) != 0L && current + d <= b then
        current += d
        op.addOne(d)
    for i <- 59 to 0 by -1 do
      val d = 1L << i
      if current + d <= b then
        current += d
        op.addOne(d)
    println(op.length)
    println(op.mkString(" "))
0