結果

問題 No.1243 約数加算
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-03 16:30:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 74,028 KB
最終ジャッジ日時 2024-07-18 04:33:46
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,948 KB
testcase_01 AC 41 ms
54,108 KB
testcase_02 AC 41 ms
55,464 KB
testcase_03 AC 39 ms
55,128 KB
testcase_04 AC 53 ms
65,432 KB
testcase_05 AC 60 ms
69,260 KB
testcase_06 AC 60 ms
68,500 KB
testcase_07 AC 72 ms
74,028 KB
testcase_08 AC 65 ms
67,968 KB
testcase_09 AC 43 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
from collections import deque
import math
for _ in range(t):
    a,b = map(int,input().split())
    l = []
    r = []
    for i in range(120):
        if a == b:
            break
        g = math.gcd(a, b)
        if (a//g)%2 == 1:
            l.append(g)
            a += g
        if (b//g)%2 == 1:
            r.append(g)
            b -= g
    r.reverse()
    ans = l+r
    print(len(ans))
    print(*ans)
0