結果
問題 | No.2104 Multiply-Add |
ユーザー | 👑 Kazun |
提出日時 | 2022-10-21 22:36:51 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,126 bytes |
コンパイル時間 | 516 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 848,344 KB |
最終ジャッジ日時 | 2024-07-01 07:05:43 |
合計ジャッジ時間 | 4,937 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
54,108 KB |
testcase_01 | AC | 38 ms
53,560 KB |
testcase_02 | AC | 38 ms
52,504 KB |
testcase_03 | AC | 39 ms
54,552 KB |
testcase_04 | AC | 39 ms
53,868 KB |
testcase_05 | AC | 38 ms
53,312 KB |
testcase_06 | AC | 38 ms
53,424 KB |
testcase_07 | AC | 40 ms
52,464 KB |
testcase_08 | AC | 39 ms
53,744 KB |
testcase_09 | AC | 39 ms
53,064 KB |
testcase_10 | AC | 39 ms
54,248 KB |
testcase_11 | AC | 40 ms
53,996 KB |
testcase_12 | AC | 39 ms
53,060 KB |
testcase_13 | AC | 39 ms
53,148 KB |
testcase_14 | AC | 38 ms
53,040 KB |
testcase_15 | AC | 38 ms
54,080 KB |
testcase_16 | AC | 38 ms
53,412 KB |
testcase_17 | AC | 38 ms
53,276 KB |
testcase_18 | AC | 39 ms
53,064 KB |
testcase_19 | AC | 39 ms
53,084 KB |
testcase_20 | AC | 38 ms
53,540 KB |
testcase_21 | MLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
def operate(x,y,T): for t,k in T: if t==1: x+=k*y else: y+=k*x return x,y def solve(): from math import gcd a,b,c,d=map(int,input().split()) if gcd(a,b)!=gcd(c,d): print(-1) return if gcd(a,b)==0: print(0) return def euclid(a,b): res=[] while a and b: if abs(a)>abs(b): k=-a//b res.append((1,k)) a+=k*b else: k=-(b//a) res.append((2,k)) b+=k*a return res T1=euclid(a,b); a2,b2=operate(a,b,T1) T2=euclid(c,d); c2,d2=operate(c,d,T2) T3=[] if a2==0: a2,b2=b2,a2 T3=[(1,1),(2,-1)] T4=[] if c2==0: c2,d2=d2,c2 T4=[(1,1),(2,-1)] T5=[] if a2*c2<0: T5=[(2,-2),(1,1),(2,-2)] T2=[(t,-k) for t,k in T2][::-1] T4=[(t,-k) for t,k in T4][::-1] T=T1+T3+T5+T4+T2 print(len(T)) for t,k in T: print(t,k) #================================================== solve()