結果

問題 No.2104 Multiply-Add
ユーザー ShirotsumeShirotsume
提出日時 2022-10-22 00:43:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,434 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 67,168 KB
最終ジャッジ日時 2024-07-01 08:38:26
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,308 KB
testcase_01 AC 38 ms
54,632 KB
testcase_02 AC 42 ms
53,076 KB
testcase_03 AC 39 ms
54,108 KB
testcase_04 AC 39 ms
53,896 KB
testcase_05 AC 39 ms
52,932 KB
testcase_06 AC 39 ms
54,064 KB
testcase_07 AC 39 ms
53,528 KB
testcase_08 AC 39 ms
54,124 KB
testcase_09 AC 39 ms
53,012 KB
testcase_10 AC 39 ms
53,552 KB
testcase_11 AC 39 ms
53,184 KB
testcase_12 AC 38 ms
53,952 KB
testcase_13 AC 39 ms
52,936 KB
testcase_14 AC 39 ms
53,884 KB
testcase_15 AC 38 ms
53,444 KB
testcase_16 AC 39 ms
54,092 KB
testcase_17 AC 38 ms
54,780 KB
testcase_18 AC 38 ms
53,616 KB
testcase_19 AC 38 ms
53,004 KB
testcase_20 AC 39 ms
53,876 KB
testcase_21 AC 39 ms
53,564 KB
testcase_22 AC 38 ms
53,128 KB
testcase_23 AC 39 ms
52,868 KB
testcase_24 AC 38 ms
53,816 KB
testcase_25 WA -
testcase_26 AC 39 ms
53,008 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 38 ms
53,548 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:
    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