結果

問題 No.1243 約数加算
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-24 16:15:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 74,384 KB
最終ジャッジ日時 2024-09-24 17:18:13
合計ジャッジ時間 1,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 38 ms
53,852 KB
testcase_03 AC 41 ms
59,628 KB
testcase_04 AC 55 ms
66,300 KB
testcase_05 AC 58 ms
70,536 KB
testcase_06 AC 66 ms
74,384 KB
testcase_07 AC 61 ms
67,460 KB
testcase_08 AC 65 ms
74,120 KB
testcase_09 AC 42 ms
59,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def main(a,b):
  if b==a:return []
  if 2*a<=b:
    ret=[a]+main(2*a,b)
    return ret
  d=1
  while a+2*d<=b and a%(2*d)==0:
    d*=2
  ary=[d]+main(a+d,b)
  return ary

if __name__=='__main__':
  t=int(input())
  cases=[list(map(int,input().split())) for _ in range(t)]
  for a,b in cases:
    ret=main(a,b)
    print(len(ret))
    print(*ret)
0