結果

問題 No.1243 約数加算
ユーザー lloyzlloyz
提出日時 2023-08-07 02:27:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-04-24 20:43:53
合計ジャッジ時間 1,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 83 ms
72,576 KB
testcase_05 AC 68 ms
66,944 KB
testcase_06 AC 68 ms
67,456 KB
testcase_07 AC 85 ms
73,984 KB
testcase_08 AC 67 ms
67,584 KB
testcase_09 AC 42 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Pow2 = [pow(2, i) for i in range(61)]

for _ in range(int(input())):
    ANS = []
    a, b = map(int, input().split())
    for i in range(60):
        if a % Pow2[i] == 0 and a % Pow2[i + 1] != 0 and a + Pow2[i] <= b:
            a += Pow2[i]
            ANS.append(Pow2[i])
    for i in range(59, -1, -1):
        if a % Pow2[i] == 0 and a + Pow2[i] <= b:
            a += Pow2[i]
            ANS.append(Pow2[i])
    print(len(ANS))
    print(*ANS)
0