結果
問題 | No.2104 Multiply-Add |
ユーザー | Shirotsume |
提出日時 | 2022-10-21 23:42:51 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,594 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 67,744 KB |
最終ジャッジ日時 | 2024-07-01 07:49:21 |
合計ジャッジ時間 | 6,864 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 38 ms
53,224 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
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,744 KB |
ソースコード
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 abs(x) >= abs(y): k = x // y ans.append((1, -k)) x -= k * y else: k = y // x ans.append((2, -k)) y -= k * x ans2 = [] x2 = c y2 = d for i in range(200): if x2 * y2 == 0: break if abs(x2) >= abs(y2): k = x2 // y2 x2 -= k * y2 ans2.append((1, k)) else: k = y2 // x2 y2 -= k * x2 ans2.append((2, k)) #入れ替え if x == 0 and x2 != 0: ans2.append((2, 1)) y2 += x2 ans2.append((1, -1)) x2 -= y2 if y == 0 and y2 != 0: ans2.append((1, 1)) x2 += y2 ans2.append((2, -1)) y2 += x2 #符号変え if x * x2 < 0: ans2.append((2, -1)) y2 -= x2 ans2.append((1, 1)) x2 += y2 if y * y2 < 0: ans2.append((1, -1)) x2 -= y2 ans2.append((2, 1)) y2 += x2 if x == 0 and x2 != 0: ans2.append((2, 1)) y2 += x2 ans2.append((1, -1)) x2 -= y2 if y == 0 and y2 != 0: ans2.append((1, 1)) x2 += y2 ans2.append((2, -1)) y2 += x2 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 for t, k in ans: print(t, k)