結果

問題 No.2104 Multiply-Add
ユーザー ShirotsumeShirotsume
提出日時 2022-10-22 00:44:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-07-01 08:39:41
合計ジャッジ時間 2,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,332 KB
testcase_01 AC 39 ms
52,660 KB
testcase_02 AC 39 ms
53,268 KB
testcase_03 AC 40 ms
54,064 KB
testcase_04 AC 44 ms
53,480 KB
testcase_05 AC 40 ms
52,896 KB
testcase_06 AC 39 ms
53,216 KB
testcase_07 AC 40 ms
52,832 KB
testcase_08 AC 39 ms
52,880 KB
testcase_09 AC 39 ms
52,428 KB
testcase_10 AC 40 ms
52,716 KB
testcase_11 AC 39 ms
53,728 KB
testcase_12 AC 40 ms
52,492 KB
testcase_13 AC 40 ms
52,008 KB
testcase_14 AC 40 ms
52,652 KB
testcase_15 AC 39 ms
53,204 KB
testcase_16 AC 38 ms
53,096 KB
testcase_17 AC 39 ms
52,468 KB
testcase_18 AC 39 ms
52,940 KB
testcase_19 AC 39 ms
52,760 KB
testcase_20 AC 39 ms
54,368 KB
testcase_21 AC 40 ms
54,204 KB
testcase_22 AC 39 ms
53,296 KB
testcase_23 AC 40 ms
53,804 KB
testcase_24 AC 39 ms
52,740 KB
testcase_25 AC 39 ms
54,348 KB
testcase_26 AC 40 ms
52,940 KB
testcase_27 AC 39 ms
51,876 KB
testcase_28 AC 39 ms
54,300 KB
testcase_29 AC 40 ms
52,744 KB
testcase_30 AC 39 ms
53,896 KB
testcase_31 AC 39 ms
52,592 KB
testcase_32 AC 39 ms
53,836 KB
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 39 ms
52,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
from math import gcd
a, b, c, d = mi()

if gcd(a, b) == 0 and gcd(c, d) > 0:
    print(-1)
    exit()
if gcd(c, d) != gcd(a, b):
    print(-1)
    exit()

ans = []

x = a
y = b

for i in range(200):
    if x * y == 0:
        break
    if i % 2:
        k = x // y
        ans.append((1, -k))
        x -= k * y
    else:
        k = y // x
        ans.append((2, -k))
        y -= k * x
if x == 0:
    ans.append((1, 1))
    x += y
    ans.append((2, -1))
    y -= x
if x < 0:
    ans.append((2, -1))
    y -= x
    ans.append((1, 1))
    x += y
    ans.append((1, 1))
    x += y
    ans.append((2, -1))
    y -= x
ans2 = []
x = c
y = d
for i in range(200):
    if x * y == 0:
        break
    if i % 2:
        k = x // y
        ans2.append((1, k))
        x -= k * y
    else:
        k = y // x
        ans2.append((2, k))
        y -= k * x
if x == 0:
    ans2.append((1, -1))
    x += y
    ans2.append((2, 1))
    y -= x
if x < 0:
    ans2.append((2, 1))
    y -= x
    ans2.append((1, -1))
    x += y
    ans2.append((1, -1))
    x += y
    ans2.append((2, 1))
    y -= x
ans = ans + ans2[::-1]

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

assert x == c and y == d

print(len(ans))
for t, k in ans:
    print(t, k)
0