結果
問題 | No.1243 約数加算 |
ユーザー | FromBooska |
提出日時 | 2023-02-22 12:52:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,181 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,284 KB |
実行使用メモリ | 849,060 KB |
最終ジャッジ日時 | 2024-07-22 14:53:06 |
合計ジャッジ時間 | 3,106 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,880 KB |
testcase_01 | AC | 39 ms
53,780 KB |
testcase_02 | AC | 39 ms
52,948 KB |
testcase_03 | WA | - |
testcase_04 | MLE | - |
testcase_05 | -- | - |
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) num = divs[idx-1] count = (B-A)//num temp = [num]*count #print(A, B, num, count) ans.extend(temp) A += num*count print(len(ans)) print(*ans)