結果

問題 No.2785 四乗足す四の末尾の0
ユーザー PralaPrala
提出日時 2024-08-10 00:57:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 79,088 KB
最終ジャッジ日時 2024-08-10 00:57:46
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,156 KB
testcase_01 AC 35 ms
53,140 KB
testcase_02 AC 37 ms
53,896 KB
testcase_03 AC 36 ms
52,000 KB
testcase_04 AC 37 ms
53,220 KB
testcase_05 AC 44 ms
53,352 KB
testcase_06 AC 36 ms
52,156 KB
testcase_07 AC 37 ms
52,348 KB
testcase_08 AC 36 ms
52,156 KB
testcase_09 AC 37 ms
52,464 KB
testcase_10 AC 35 ms
52,196 KB
testcase_11 AC 36 ms
53,244 KB
testcase_12 AC 38 ms
53,216 KB
testcase_13 AC 71 ms
70,656 KB
testcase_14 AC 195 ms
79,088 KB
testcase_15 AC 417 ms
79,008 KB
testcase_16 AC 37 ms
52,208 KB
testcase_17 AC 410 ms
78,428 KB
testcase_18 AC 414 ms
78,428 KB
testcase_19 AC 409 ms
78,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def two(n):
	cnt = 0
	while not n % 2:
		n //= 2
		cnt += 1
	return cnt

def fiv(n):
	cnt = 0
	while not n % 5:
		n //= 5
		cnt += 1
	return cnt

for i in range(T):
	N = int(input())
	if abs(N) == 1:
		print("Yes")
		print(0)
		continue
	A = N**2-2*N+2
	B = N**2+2*N+2
	print("No")
	print(min(two(A)+two(B), fiv(A)+fiv(B)))
0