結果

問題 No.2271 平方根の13桁精度近似計算
ユーザー shobonvipshobonvip
提出日時 2023-04-14 23:13:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,582 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 69,704 KB
最終ジャッジ日時 2024-04-18 20:51:03
合計ジャッジ時間 4,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
67,780 KB
testcase_01 AC 60 ms
68,552 KB
testcase_02 AC 58 ms
68,856 KB
testcase_03 AC 58 ms
69,040 KB
testcase_04 AC 58 ms
67,532 KB
testcase_05 AC 63 ms
67,632 KB
testcase_06 AC 61 ms
68,536 KB
testcase_07 AC 63 ms
68,248 KB
testcase_08 AC 60 ms
67,840 KB
testcase_09 AC 60 ms
68,028 KB
testcase_10 AC 61 ms
68,728 KB
testcase_11 AC 59 ms
68,192 KB
testcase_12 WA -
testcase_13 AC 60 ms
67,696 KB
testcase_14 AC 67 ms
68,800 KB
testcase_15 AC 60 ms
68,000 KB
testcase_16 WA -
testcase_17 AC 61 ms
67,952 KB
testcase_18 AC 61 ms
67,908 KB
testcase_19 WA -
testcase_20 AC 59 ms
67,948 KB
testcase_21 AC 61 ms
67,172 KB
testcase_22 AC 57 ms
68,864 KB
testcase_23 WA -
testcase_24 AC 60 ms
67,960 KB
testcase_25 AC 63 ms
67,160 KB
testcase_26 AC 61 ms
67,280 KB
testcase_27 AC 60 ms
68,328 KB
testcase_28 AC 60 ms
67,560 KB
testcase_29 AC 63 ms
67,888 KB
testcase_30 AC 59 ms
68,260 KB
testcase_31 AC 58 ms
67,676 KB
testcase_32 AC 60 ms
68,768 KB
testcase_33 AC 59 ms
68,224 KB
testcase_34 WA -
testcase_35 AC 59 ms
67,504 KB
testcase_36 AC 59 ms
67,648 KB
testcase_37 AC 63 ms
68,712 KB
testcase_38 AC 62 ms
69,100 KB
testcase_39 AC 60 ms
68,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing

def inv_gcd(a: int, b: int) -> typing.Tuple[int, int]:
	a %= b
	if a == 0:
		return (b, 0)
	s = b
	t = a
	m0 = 0
	m1 = 1
	while t:
		u = s // t
		s -= t * u
		m0 -= m1 * u
		s, t = t, s
		m0, m1 = m1, m0
	if m0 < 0:
		m0 += b // s
	return (s, m0)

def inv_mod(x: int, m: int) -> int:
	z = inv_gcd(x, m)
	return z[1]

def crt(r: typing.List[int], m: typing.List[int]) -> typing.Tuple[int, int]:
	r0 = 0
	m0 = 1
	for r1, m1 in zip(r, m):
		r1 %= m1
		if m0 < m1:
			r0, r1 = r1, r0
			m0, m1 = m1, m0
		if m0 % m1 == 0:
			if r0 % m1 != r1:
				return (0, 0)
			continue
		g, im = inv_gcd(m0, m1)
		u1 = m1 // g
		if (r1 - r0) % g:
			return (0, 0)
		x = (r1 - r0) // g % u1 * im % u1
		r0 += x * m0
		m0 *= u1
		if r0 < 0:r0 += m0
	return (r0, m0)


n = int(input())
e = int(input())
# x^2 + y 5^e - n = 0 has integer solution ?
# e = 0 -> ok.
if e == 0 or n == 0:
	print(0)
	exit()

def floorsqrt(n):
	# only for n <= 10 ** 18
	ok = 10 ** 9 + 10
	ng = 0
	while ok - ng > 1:
		t = (ok + ng) // 2
		if t * t > n: ok = t
		else: ng = t
	return ng

if (n % (5 ** e) == 0):
	print(0)
	exit()

ee = e
nn = n
basis = 1
while n % 25 == 0:
	n //= 25
	e -= 2
	basis *= 25

if not (n % 5 == 1 or n % 5 == 4):
	print("NaN")
	exit()

a = -1
for i in range(5):
	if (i * i - n) % 5 == 0:
		a = i
		break

assert a >= 0

for t in range(2, e+1):
	c = (a * a - n) // (5 ** (t-1))
	y = -1
	for yy in range(5):
		if (2 * a * yy + c) % 5 == 0:
			y = yy
			break
	assert y >= 0
	b = (a + 5 ** (t-1) * y) % (5 ** t)
	a = b

a *= basis
a %= (5 ** ee)
if a > 2 ** 29:
	a -= 5 ** ee

print(a)
0