結果

問題 No.1243 約数加算
ユーザー googol_S0googol_S0
提出日時 2020-10-02 21:26:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 68,384 KB
最終ジャッジ日時 2024-07-16 04:15:11
合計ジャッジ時間 1,249 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,068 KB
testcase_01 AC 41 ms
53,260 KB
testcase_02 AC 36 ms
52,424 KB
testcase_03 AC 36 ms
52,492 KB
testcase_04 AC 54 ms
65,632 KB
testcase_05 AC 56 ms
68,384 KB
testcase_06 AC 56 ms
67,428 KB
testcase_07 AC 56 ms
66,316 KB
testcase_08 AC 57 ms
67,392 KB
testcase_09 AC 38 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
  A,B=map(int,input().split())
  P=[]
  for i in range(60):
    if A+(1<<i)>B:
      break
    if A&(1<<i):
      P.append(1<<i)
      A+=(1<<i)
  C=B-A
  for i in range(59,-1,-1):
    if C&(1<<i):
      P.append(1<<i)
      A+=(1<<i)
  print(len(P))
  print(*P)
0