結果

問題 No.2104 Multiply-Add
ユーザー 👑 rin204rin204
提出日時 2022-10-28 14:25:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 821 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 65,280 KB
最終ジャッジ日時 2024-07-05 19:07:40
合計ジャッジ時間 4,741 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 RE -
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 43 ms
51,968 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 44 ms
52,224 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 39 ms
52,224 KB
testcase_26 RE -
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 39 ms
51,712 KB
testcase_29 AC 39 ms
51,712 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 38 ms
51,968 KB
testcase_33 AC 38 ms
52,096 KB
testcase_34 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

a, b, c, d = map(int, input().split())
if gcd(a, b) != gcd(c, d):
    print(-1)
    exit()


def solve(x, y):
    ans = []
    while x != 0 and y != 0:
        if abs(x) > abs(y):
            k = x // y
            ans.append((1, -k))
            x -= k * y
        else:
            k = y // x
            ans.append((2, -k))
            y -= k * x

    if y == 0:
        ans.append((2, 1))
        ans.append((1, -1))
    if y < 0:
        ans.append((1, 1))
        ans.append((2, -2))
        ans.append((1, 1))
        
    return ans

A = solve(a, b)
B = solve(c, d)

ans = A[:]
for t, b_ in B[::-1]:
    ans.append((t, -b_))

print(len(ans))
for row in ans:
    print(*row)

x, y = a, b
for t, k in ans:
    if t == 1:
        x += y * k
    else:
        y += x * k

assert (x, y) == (c, d)
0