結果

問題 No.2104 Multiply-Add
ユーザー titiatitia
提出日時 2022-10-24 00:24:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-02 12:36:38
合計ジャッジ時間 3,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 25 ms
11,008 KB
testcase_12 AC 28 ms
11,008 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 26 ms
10,880 KB
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 WA -
testcase_25 AC 26 ms
10,880 KB
testcase_26 AC 26 ms
10,880 KB
testcase_27 AC 26 ms
10,880 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 28 ms
10,880 KB
testcase_30 AC 26 ms
10,880 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 27 ms
10,880 KB
testcase_33 AC 26 ms
10,880 KB
testcase_34 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

a,b,c,d=map(int,input().split())

if a==c and b==d:
    print(0)
    exit()

if a==b==0 or c==d==0:
    print(-1)
    exit()

X=[(a,b)]

while a!=0 and b!=0:
    if abs(a)>abs(b):
        a=a%b
        X.append((a,b))
    else:
        b=b%a
        X.append((a,b))
        

Y=[(c,d)]
while c!=0 and d!=0:
    if abs(c)>abs(d):
        c=c%d
        Y.append((c,d))
    else:
        d=d%c
        Y.append((c,d))

k=-1
for a in X[-1]:
    if a!=0:
        k=a

l=-1
for a in Y[-1]:
    if a!=0:
        l=a

if abs(k)!=abs(l):
    print(-1)
    exit()


if X[-1]==Y[-1]:
    X=X+Y[::-1][1:]
else:
    X[-1]=(k,k)
    X.append((k,l))
    X.append((l,l))
    X=X+Y[::-1][1:]
    

ANS=[]

for i in range(len(X)-1):
    a,b=X[i]
    c,d=X[i+1]

    if a==c:
        x=(d-b)//a

        ANS.append((2,x))

    else:
        x=(c-a)//b

        ANS.append((1,x))

print(len(ANS))
for x,y in ANS:
    print(x,y)
0