結果
問題 | No.2104 Multiply-Add |
ユーザー | flygon |
提出日時 | 2022-10-21 23:13:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 897 bytes |
コンパイル時間 | 375 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 66,744 KB |
最終ジャッジ日時 | 2024-07-01 07:31:40 |
合計ジャッジ時間 | 6,197 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 38 ms
53,472 KB |
testcase_02 | AC | 39 ms
54,112 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 38 ms
53,216 KB |
testcase_26 | WA | - |
testcase_27 | AC | 39 ms
52,716 KB |
testcase_28 | AC | 39 ms
52,852 KB |
testcase_29 | AC | 40 ms
52,760 KB |
testcase_30 | AC | 39 ms
53,684 KB |
testcase_31 | AC | 38 ms
52,656 KB |
testcase_32 | AC | 39 ms
52,568 KB |
testcase_33 | AC | 39 ms
53,860 KB |
testcase_34 | AC | 40 ms
53,736 KB |
ソースコード
a,b,c,d = map(int,input().split()) from math import gcd if gcd(a,b) != gcd(c,d): print(-1) exit() cd = [[c,d]] if c < 0: c = c + abs(d) * (10**8+10) cd.append([c,d]) if d < 0: d = d + (abs(d)//c+1)*c cd.append([c,d]) while c != 0 and d != 0: if c < d: d %= c cd.append([c,d]) else: c %= d cd.append([c,d]) ab = [[a,b]] if a < 0: a = a + abs(b) * (10**8+10) ab.append([a,b]) if b < 0: b = b + (abs(b)//a+1)*a ab.append([a,b]) while a != 0 and b != 0: if a < b: b %= a ab.append([a,b]) else: a %= b ab.append([a,b]) if ab[-1] == cd[-1]: ab.pop() cd += ab[::-1] else: ab.append([max(ab[-1]), max(ab[-1])]) cd += ab[::-1] print(len(cd)-1) for i in range(1,len(cd)): c,d = cd[i] if c == cd[i-1][0]: dd = cd[i-1][1] tmp = (d - dd)//c print(2, tmp) else: cc = cd[i-1][0] tmp = (c-cc)//d print(1, tmp)