結果

問題 No.1243 約数加算
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 20:29:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 67,852 KB
最終ジャッジ日時 2024-06-25 22:55:02
合計ジャッジ時間 1,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,948 KB
testcase_01 AC 36 ms
53,340 KB
testcase_02 AC 36 ms
52,704 KB
testcase_03 AC 40 ms
59,864 KB
testcase_04 AC 57 ms
67,228 KB
testcase_05 AC 53 ms
66,224 KB
testcase_06 AC 56 ms
67,852 KB
testcase_07 AC 50 ms
65,008 KB
testcase_08 AC 56 ms
66,628 KB
testcase_09 AC 39 ms
59,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
ab=[list(map(int,input().split())) for _ in range(t)]
for a,b in ab:
  ary=[]
  while b>a:
    t=b-a
    t=1<<(t.bit_length()-1)
    while a%t!=0:
      t>>=1
    ary.append(t)
    a+=t
  assert a==b,(a,b)
  print(len(ary))
  print(*ary)
0