結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,068 KB
testcase_01 AC 32 ms
52,956 KB
testcase_02 AC 33 ms
52,724 KB
testcase_03 AC 34 ms
54,060 KB
testcase_04 AC 53 ms
67,460 KB
testcase_05 AC 58 ms
70,500 KB
testcase_06 AC 57 ms
69,804 KB
testcase_07 AC 55 ms
69,060 KB
testcase_08 AC 57 ms
70,464 KB
testcase_09 AC 34 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
    a,b=map(int,input().split())
    moves=[]
    cnt=0
    for i in range(1,100):
        if a%(2**i)==0:
            cnt=i
        else:
            break
    for i in range(cnt,100):
        if 2**i<=(b-a):
            if (a//(2**i))%2==1:
                moves.append(2**i)
                a+=2**i
        else:
            break
    flag=format(b-a,'b')
    l=len(flag)
    for i in range(l):
        if flag[i]=='1':
            moves.append(2**(l-i-1))
            a+=2**(l-i-1)
    print(len(moves))
    print(*moves)
0