結果
問題 | No.1243 約数加算 |
ユーザー | ntuda |
提出日時 | 2021-09-16 22:17:54 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 692 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 82,452 KB |
実行使用メモリ | 207,548 KB |
最終ジャッジ日時 | 2024-06-29 17:15:42 |
合計ジャッジ時間 | 4,098 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
64,716 KB |
testcase_01 | AC | 44 ms
62,904 KB |
testcase_02 | AC | 48 ms
66,632 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
def make_divisors(n): divisors = [] for i in range(1, int(n**0.5)+1): if n % i == 0: divisors.append(i) if i != n // i: divisors.append(n//i) divisors.sort() return divisors T = int(input()) AB = [list(map(int,input().split())) for _ in range(T)] for a,b in AB: Q1 = {a:[]} Q2 = {} S1 = {} i = 0 while not(b in Q1.keys()) and i < 120: for q,L in Q1.items(): D = make_divisors(q) for d in D: qt = q + d if not(qt in Q2.keys()): Q2[qt] = L + [d] Q1,Q2 = Q2,Q1 i += 1 print(len(Q1[b])) print(*Q1[b])