結果

問題 No.1243 約数加算
ユーザー tktk_snsn
提出日時 2020-10-02 23:57:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 924 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-18 00:32:36
合計ジャッジ時間 1,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


def calc(A, B):
    resR = []
    resL = []
    while A + A <= B:
        if B % 2 == 0:
            resR.append(B // 2)
            B //= 2
        else:
            resR.append(1)
            B -= 1

    while A + A <= B:
        resL.append(A)
        A += A

    cnt = 0
    X = A
    while X % 2 == 0:
        cnt += 1
        X >>= 1

    dif = B - A
    while dif:
        for i in reversed(range(cnt + 1)):
            val = 1 << i
            if dif >= val:
                dif -= val
                resL.append(val)
                A += val
                if A % (val * 2) == 0:
                    cnt = max(cnt, i + 1)
                break
    res = resL + resR[::-1]
    print(len(res))
    print(*res, sep=" ")


T = int(input())
query = tuple(tuple(map(int, input().split())) for _ in range(T))
for a, b in query:
    calc(a, b)
0