結果

問題 No.1243 約数加算
ユーザー ayaoniayaoni
提出日時 2020-11-27 01:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 66,660 KB
最終ジャッジ日時 2024-07-23 21:13:04
合計ジャッジ時間 1,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,688 KB
testcase_01 AC 39 ms
52,208 KB
testcase_02 AC 39 ms
52,460 KB
testcase_03 AC 40 ms
53,216 KB
testcase_04 AC 57 ms
65,380 KB
testcase_05 AC 57 ms
65,872 KB
testcase_06 AC 57 ms
66,564 KB
testcase_07 AC 58 ms
66,660 KB
testcase_08 AC 58 ms
66,496 KB
testcase_09 AC 41 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())


T = I()
for _ in range(T):
    A,B = MI()
    ANS = []
    while A+(A & (-A)) <= B:
        ANS.append(A & (-A))
        A += A & (-A)
    l = B.bit_length()
    for i in range(l-1,-1,-1):
        if (B>>i) & 1 and not (A>>i) & 1:
            ANS.append(1<<i)
    print(len(ANS))
    print(*ANS)
0