結果
問題 | No.1243 約数加算 |
ユーザー | FromBooska |
提出日時 | 2023-02-22 12:41:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,117 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 72,880 KB |
最終ジャッジ日時 | 2024-07-22 14:43:58 |
合計ジャッジ時間 | 4,456 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
59,324 KB |
testcase_01 | AC | 41 ms
54,224 KB |
testcase_02 | AC | 42 ms
54,372 KB |
testcase_03 | AC | 62 ms
59,440 KB |
testcase_04 | AC | 437 ms
72,880 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
# 2**120 > 1**18なので、1から10**18まで120回で達することができる # まず最大値より大きければどんどん大きくするのがいい、貪欲的 # 入力例1の(26, 57)で、26未満の約数を最初に加えるメリットはない # 26+26とすれば、26の約数はすべてキープされて後でも使えるから # 毎回約数をリストすると間に合わないか def divisors(n): lower_divisors , upper_divisors = [], [] i = 1 while i*i <= n: if n % i == 0: lower_divisors.append(i) if i != n // i: upper_divisors.append(n//i) i += 1 return lower_divisors + upper_divisors[::-1] T = int(input()) for t in range(T): A, B = map(int, input().split()) ans = [] while B >= A*2: ans.append(A) A *= 2 from bisect import * while B > A: divs = divisors(A) # Aの約数は変わっていく idx = bisect_left(divs, B-A+1) ans.append(divs[idx-1]) #print(B, A, divs, divs[idx-1]) A += divs[idx-1] print(len(ans)) print(*ans)