結果

問題 No.1243 約数加算
ユーザー KudeKude
提出日時 2020-10-02 22:16:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 70,884 KB
最終ジャッジ日時 2024-07-17 21:33:02
合計ジャッジ時間 1,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,452 KB
testcase_01 AC 33 ms
51,996 KB
testcase_02 AC 33 ms
53,428 KB
testcase_03 AC 34 ms
52,592 KB
testcase_04 AC 50 ms
64,844 KB
testcase_05 AC 51 ms
67,800 KB
testcase_06 AC 50 ms
66,416 KB
testcase_07 AC 58 ms
70,884 KB
testcase_08 AC 52 ms
66,372 KB
testcase_09 AC 34 ms
53,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b = map(int, input().split())
    ans = []
    for d in range(100):
        bit = 1 << d
        if a & bit:
            if a + bit <= b:
                a += bit
                ans.append(bit)
            else:
                break
    rest = b - a
    for d in range(rest.bit_length() - 1, -1, -1):
        bit = 1 << d
        if rest & bit:
            ans.append(bit)
    print(len(ans))
    print(*ans)
0