結果
問題 |
No.1243 約数加算
|
ユーザー |
![]() |
提出日時 | 2020-10-02 22:54:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 119,020 KB |
最終ジャッジ日時 | 2024-07-17 22:55:31 |
合計ジャッジ時間 | 4,023 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 2 TLE * 1 -- * 6 |
ソースコード
import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) def calc(A, B): res = [] while A + A <= B: res.append(A) A += A dif = B - A cnt = 0 while A % 2 == 0: cnt += 1 A >>= 1 while dif: for i in reversed(range(cnt + 1)): val = 1 << i if dif >= val: dif -= val res.append(val) cnt = i + 1 print(len(res)) print(*res, sep=" ") T = int(input()) query = tuple(tuple(map(int, input().split())) for _ in range(T)) for a, b in query: calc(a, b)