結果

問題 No.1243 約数加算
ユーザー tamatotamato
提出日時 2020-10-02 22:31:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 596 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 259,824 KB
最終ジャッジ日時 2024-07-17 22:05:24
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,692 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 35 ms
10,624 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        A, B = map(int, input().split())
        NB = B.bit_length()
        i0 = NB - 1
        ans = []
        while A >> i0 & 1 == B >> i0 & 1:
            i0 -= 1
        A %= 1 << i0
        while A < (1 << i0):
            ans.append(A & -A)
            A += A & -A
        for i in range(i0-1, -1, -1):
            if A >> i & 1 != B >> i & 1:
                ans.append(1 << i)
        print(len(ans))
        print(*ans)


if __name__ == '__main__':
    main()
0