結果

問題 No.2785 四乗足す四の末尾の0
ユーザー PralaPrala
提出日時 2024-08-10 00:51:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 79,032 KB
最終ジャッジ日時 2024-08-10 00:51:23
合計ジャッジ時間 3,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,648 KB
testcase_01 AC 33 ms
52,820 KB
testcase_02 AC 34 ms
53,696 KB
testcase_03 AC 36 ms
53,752 KB
testcase_04 AC 34 ms
52,824 KB
testcase_05 AC 34 ms
53,364 KB
testcase_06 AC 36 ms
52,536 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 184 ms
78,700 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
		exit()
	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