結果
問題 | No.1243 約数加算 |
ユーザー | i_taku |
提出日時 | 2024-06-07 10:52:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,788 KB |
実行使用メモリ | 752,492 KB |
最終ジャッジ日時 | 2024-06-07 10:52:38 |
合計ジャッジ時間 | 5,030 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
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(*ans)