結果

問題 No.1243 約数加算
ユーザー rlangevinrlangevin
提出日時 2023-03-22 08:52:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 68,256 KB
最終ジャッジ日時 2024-09-18 14:44:22
合計ジャッジ時間 1,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,864 KB
testcase_01 AC 35 ms
52,360 KB
testcase_02 AC 34 ms
52,652 KB
testcase_03 AC 33 ms
53,204 KB
testcase_04 AC 49 ms
66,996 KB
testcase_05 AC 54 ms
68,256 KB
testcase_06 AC 53 ms
67,268 KB
testcase_07 AC 52 ms
66,228 KB
testcase_08 AC 53 ms
67,064 KB
testcase_09 AC 34 ms
52,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    A, B = map(int, input().split())
    ans = []
    for i in range(61):
        two = 1 << i
        if A & two and A + two <= B:
            ans.append(two)
            A += two
    
    for i in range(61, -1, -1):
        two = 1 << i
        if A + two <= B:
            ans.append(two)
            A += two

    print(len(ans))
    print(*ans)
0