結果

問題 No.2104 Multiply-Add
ユーザー shotoyooshotoyoo
提出日時 2022-10-21 22:00:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,938 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 80,396 KB
最終ジャッジ日時 2023-09-13 22:19:12
合計ジャッジ時間 8,353 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
72,500 KB
testcase_01 AC 91 ms
72,264 KB
testcase_02 AC 89 ms
72,260 KB
testcase_03 AC 90 ms
72,220 KB
testcase_04 AC 88 ms
72,180 KB
testcase_05 AC 90 ms
72,132 KB
testcase_06 AC 88 ms
72,088 KB
testcase_07 AC 88 ms
72,328 KB
testcase_08 AC 86 ms
72,428 KB
testcase_09 AC 89 ms
72,260 KB
testcase_10 AC 88 ms
72,432 KB
testcase_11 AC 89 ms
71,940 KB
testcase_12 AC 92 ms
72,012 KB
testcase_13 AC 92 ms
72,316 KB
testcase_14 AC 91 ms
72,220 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 90 ms
72,524 KB
testcase_22 AC 92 ms
72,204 KB
testcase_23 AC 88 ms
71,980 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 91 ms
72,200 KB
testcase_27 AC 90 ms
72,024 KB
testcase_28 AC 92 ms
71,916 KB
testcase_29 AC 91 ms
71,972 KB
testcase_30 AC 90 ms
72,100 KB
testcase_31 AC 90 ms
72,380 KB
testcase_32 AC 91 ms
72,096 KB
testcase_33 AC 91 ms
72,120 KB
testcase_34 AC 91 ms
72,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

a,b,c,d = list(map(int, input().split()))
a0 = a
b0 = b
c0 = c
d0 = d
def gcd(a,b):
    if a==0 or b==0:
        return []
    if abs(a)>abs(b):
        t = 1
        k = a//b
        na = a%b
        nb = b
    else:
        t = 2
        k = b//a
        na = a
        nb = b%a
    return [(t,-k,na,nb)] + gcd(na,nb)
import math
g1 = math.gcd(a,b)
g2 = math.gcd(c,d)
if g2!=g1:
    print(-1)
else:
    def sub(a,b):
        l0 = []
        if a<0:
            if b==0:
                l0.extend([(2,-1), (1, 1)])
                a = 0
                b = -a
            elif b>0:
                d,m = divmod(abs(a), abs(b))
                l0.append((1, d+1))
                a += (d+1)*b
            else:
                d,m = divmod(abs(a), abs(b))
                l0.append((1, -(d+1)))
                a += -(d+1)*b
                if a==0:
                    l0.extend([(1,-1), (2,1)])
                    a = -b
                    b = 0
                else:
                    assert a>0
                    d,m = divmod(abs(b), abs(a))
                    l0.append((2, (d+1)))
                    b += a*(d+1)
        elif b<0:
            if a==0:
                l0.extend([(1,-1), (2,1)])
                b = 0
                a = -b
            else:
                # a>0
                d,m = divmod(abs(b), a)
                l0.append((2, d+1))
                b += (d+1)*a
        assert a>=0 and b>=0, breakpoint()
        return a,b,l0
    a,b,l0 = sub(a,b)
    c,d,l1 = sub(c,d)
    
    res = gcd(a,b)
    res2 = gcd(c,d)
    _,_,aa,bb = res[-1]
    _,_,aa2,bb2 = res2[-1]
    if aa==aa2:
        pass
    else:
        if aa>0:
            res.append((2,1,None,None))
            res.append((1,-1,None,None))
        else:
            res.append((1,1,None,None))
            res.append((2,-1,None,None))
    for t,k,*_ in res2[::-1]:
        res.append((t,-k,None,None))
    res0 = res[:]
    
    res = l0 + res
    for t,k,*_ in l1[::-1]:
        res.append((t,-k))
    def check(res,aa,bb):
        for t,k,*_ in res:
            if t==1:
                aa += k*bb
            else:
                bb += k*aa
        return aa,bb
    aa,bb = check(res, a0,b0)
    assert aa==c0 and bb==d0
    print(len(res))
    for item in res:
        write(" ".join(map(str, item[:2])))
0