結果

問題 No.2785 四乗足す四の末尾の0
ユーザー shobonvipshobonvip
提出日時 2024-06-14 21:27:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 76,896 KB
最終ジャッジ日時 2024-06-14 21:27:12
合計ジャッジ時間 3,885 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,948 KB
testcase_01 AC 37 ms
53,044 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 37 ms
52,740 KB
testcase_04 AC 63 ms
52,272 KB
testcase_05 AC 37 ms
54,092 KB
testcase_06 AC 37 ms
53,080 KB
testcase_07 AC 37 ms
51,936 KB
testcase_08 AC 38 ms
52,740 KB
testcase_09 AC 37 ms
52,204 KB
testcase_10 AC 36 ms
52,808 KB
testcase_11 AC 37 ms
53,228 KB
testcase_12 AC 40 ms
53,612 KB
testcase_13 AC 71 ms
72,160 KB
testcase_14 AC 131 ms
76,860 KB
testcase_15 AC 436 ms
76,632 KB
testcase_16 AC 67 ms
53,620 KB
testcase_17 AC 425 ms
76,828 KB
testcase_18 AC 443 ms
76,896 KB
testcase_19 AC 455 ms
76,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isprime(n):
	if n <= 1: return False
	if n <= 3: return True
	if n & 1 == 0: return False
	if n < 4759123141:
		check = [2, 7, 61]
	else:
		check = [2, 325, 9375, 28178, 450775, 9780504, 1795265022]
	d, s = n - 1, 0
	while d % 2 == 0:
		d >>= 1
		s += 1
	for a in check:
		if n <= a:
			return True
		a = pow(a, d, n)
		if a == 1:
			continue
		r = 1
		while a != n - 1:
			if r == s:
				return False
			a = a * a % n
			r += 1
	return True

# (n^2-2n+2)(n^2+2n+2)

def fct(n):
	if (n*n-2*n+2 == 1 and isprime(n*n+2*n+2)) or (n*n+2*n+2 == 1 and isprime(n*n-2*n+2)):
		return 1
	return 0

def fct2(n):
	m = n**4 + 4
	ret = 0
	while m % 10 == 0:
		m //= 10
		ret += 1
	return ret

T = int(input())
for _ in range(T):
	n = int(input())
	if fct(n):
		print("Yes")
	else:
		print("No")
	print(fct2(n))
0