結果
問題 | No.1936 Rational Approximation |
ユーザー | mkawa2 |
提出日時 | 2022-05-13 23:15:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,347 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-22 03:32:56 |
合計ジャッジ時間 | 1,305 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 33 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | AC | 32 ms
10,624 KB |
testcase_08 | AC | 31 ms
10,624 KB |
testcase_09 | WA | - |
testcase_10 | AC | 32 ms
10,752 KB |
testcase_11 | AC | 32 ms
10,752 KB |
testcase_12 | WA | - |
testcase_13 | AC | 32 ms
10,880 KB |
testcase_14 | AC | 32 ms
10,752 KB |
ソースコード
import sys sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 # md = 10**9+7 md = 998244353 # 不定方程式ax+by=cの特殊解を求める # 終了後にc%g==0のチェックをして、成立しなければ解なし # ectgcd(a,md,1)で、aの逆元がxとして求まる # ax≡b (mod md)を解くためにaの逆元を求めるときは # gcd(a,b,md)でa,b,mdを割ってからやること # そして、a・a^-1==1か、確認すること def extgcd(a, b, c): if b == 0: return c//a, 0, abs(a) x, y, g = extgcd(b, a%b, c) return y, x-y*(a//b), g p, q = LI() x, y, g = extgcd(-q, p, 1) # print(x, y, g) ans = x+y x, y = -x, -y while y <= 0: x, y = x+p, y+q # print(x, y, g) ans += x+y print(ans)