結果
問題 | No.1243 約数加算 |
ユーザー | O2MT |
提出日時 | 2020-12-09 12:34:57 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 82,944 KB |
実行使用メモリ | 63,232 KB |
最終ジャッジ日時 | 2024-09-19 01:06:44 |
合計ジャッジ時間 | 4,216 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,472 KB |
testcase_01 | AC | 46 ms
57,216 KB |
testcase_02 | AC | 46 ms
57,984 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
T = int(input()) MAX_COUNT = 120 for _ in range(T): A,B = map(int,input().split()) count = 0 flg = False l = [] while count < MAX_COUNT: for m in range(A,0,-1): if A%m == 0: if A+m <= B: A += m l.append(m) count += 1 if A == B: flg = True break if flg: print(len(l)) print(*l) break