結果
問題 | No.1243 約数加算 |
ユーザー | FromBooska |
提出日時 | 2023-02-22 12:29:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 73,880 KB |
最終ジャッジ日時 | 2024-07-22 14:38:36 |
合計ジャッジ時間 | 4,672 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
60,060 KB |
testcase_01 | AC | 37 ms
53,312 KB |
testcase_02 | AC | 36 ms
53,420 KB |
testcase_03 | AC | 59 ms
59,052 KB |
testcase_04 | AC | 424 ms
73,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 = [] if 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)