結果
問題 | No.1243 約数加算 |
ユーザー | buey_t |
提出日時 | 2023-03-21 00:59:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,450 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 90,780 KB |
最終ジャッジ日時 | 2024-09-18 14:12:35 |
合計ジャッジ時間 | 3,459 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
def main(): from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum from heapq import heapify, heappop, heappush from bisect import bisect_left, bisect_right from copy import deepcopy import copy import random from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_,itemgetter INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython ''' ''' for _ in range(int(input())): A,B = map(int, input().split()) ans = [] dgt = 0 while A+pow(2,dgt) <= B: if (A>>dgt)&1: tmp = pow(2,dgt) A += tmp ans.append(tmp) dgt += 1 for i in range(60): if (B>>i)&1 and (~A>>i)&1: ans.append(pow(2,i)) A += pow(2,i) print(len(ans)) print(*ans) if __name__ == '__main__': main()