結果

問題 No.1243 約数加算
ユーザー qibqib
提出日時 2023-03-08 00:36:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 68,184 KB
最終ジャッジ日時 2024-09-18 02:19:40
合計ジャッジ時間 1,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,316 KB
testcase_01 AC 39 ms
52,208 KB
testcase_02 AC 38 ms
52,396 KB
testcase_03 AC 42 ms
58,640 KB
testcase_04 AC 55 ms
65,632 KB
testcase_05 AC 64 ms
68,184 KB
testcase_06 AC 65 ms
66,732 KB
testcase_07 AC 55 ms
64,264 KB
testcase_08 AC 62 ms
66,804 KB
testcase_09 AC 44 ms
59,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
  a, b = map(int, input().split())
  cur = b
  ans = []
  while cur > a:
    d = 1
    while cur % (2 * d) == 0 and cur - (2 * d) >= a:
      d *= 2
    ans.append(d)
    cur -= d

  ans.reverse()
  print(len(ans))
  print(*ans, sep=" ")
0