結果
問題 | No.1243 約数加算 |
ユーザー | i_taku |
提出日時 | 2024-06-07 10:53:01 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 719,164 KB |
最終ジャッジ日時 | 2024-12-25 13:13:42 |
合計ジャッジ時間 | 21,498 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
62,976 KB |
testcase_01 | MLE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
ソースコード
def make_divisors(n): lower_divisors, upper_divisors = [], [] i = 1 while i**2 <= 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 _ in range(T): a, b = map(int, input().split()) divs = make_divisors(a) ans = [] while a < b: while a + divs[-1] > b: divs.pop() a += divs[-1] ans.append(divs[-1]) assert a == b print(len(ans)) print(*ans)