結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 84 ms
72,576 KB
testcase_05 AC 70 ms
66,688 KB
testcase_06 AC 73 ms
67,200 KB
testcase_07 AC 89 ms
73,984 KB
testcase_08 AC 71 ms
67,456 KB
testcase_09 AC 43 ms
52,096 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