結果
問題 | No.2104 Multiply-Add |
ユーザー | tassei903 |
提出日時 | 2022-10-21 23:21:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,804 bytes |
コンパイル時間 | 533 ms |
コンパイル使用メモリ | 81,976 KB |
実行使用メモリ | 55,120 KB |
最終ジャッジ日時 | 2024-07-01 07:35:22 |
合計ジャッジ時間 | 5,223 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 38 ms
52,808 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 38 ms
53,304 KB |
testcase_09 | AC | 40 ms
52,308 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 38 ms
53,080 KB |
testcase_14 | AC | 39 ms
53,876 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 38 ms
53,240 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 38 ms
52,364 KB |
testcase_26 | WA | - |
testcase_27 | AC | 39 ms
53,044 KB |
testcase_28 | AC | 39 ms
52,340 KB |
testcase_29 | AC | 39 ms
52,336 KB |
testcase_30 | AC | 39 ms
53,504 KB |
testcase_31 | AC | 38 ms
52,604 KB |
testcase_32 | AC | 41 ms
53,664 KB |
testcase_33 | AC | 39 ms
53,192 KB |
testcase_34 | AC | 39 ms
52,744 KB |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### A,B,C,D = na() a,b,c,d = A,B,C,D if a == 0 and b == 0: if c== 0 and d == 0: print(0) else: print(-1) exit() elif c == 0 and d == 0: print(-1) exit() l = [] r = [] if a != 0: if a > 0: k = (-b)//a + 1 l.append((2, k)) else: k = (b-a-1)//(-a)-1 l.append((2, k)) b += a * k if b != 0: if b > 0: k = (-a)//b + 1 l.append((1, k)) else: k = (a-b-1)//(-b)-1 l.append((1, k)) a += b * k if c != 0: if c > 0: k = (-d)//c + 1 r.append((2, -k)) else: k = (d-c-1)//(-c)-1 r.append((2, -k)) d += c * k if d != 0: if d > 0: k = (-c)//d + 1 r.append((1, -k)) else: k = (c-d-1)//(-d)-1 r.append((1, -k)) c += d * k def f(x,y): if x >= y: return x % y, y, x//y, 1 return x, y % x, y//x, 2 while a and b: a, b, x, y = f(a, b) #print(a, b) l.append((y, -x)) if a == 0: l.append((1, 1)) l.append((2, -1)) a = b b = 0 while c and d: c, d, x, y = f(c, d) r.append((y, x)) #print(c, d) if c == 0: r.append((1, 1)) r.append((2, -1)) c = d d = 0 if a != c: print(-1) exit() #print() ans = l + r[::-1] print(len(ans)) for i in ans: print(*i) """print() x,y = A,B for p, q in ans: print(x,y) if p == 1: x += y * q else: y += x * q print(x, y)"""