結果

問題 No.2785 四乗足す四の末尾の0
ユーザー hiro1729hiro1729
提出日時 2024-06-14 21:43:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 77,504 KB
最終ジャッジ日時 2024-06-14 21:43:28
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,744 KB
testcase_01 AC 41 ms
52,152 KB
testcase_02 AC 39 ms
53,116 KB
testcase_03 AC 39 ms
52,000 KB
testcase_04 AC 39 ms
52,708 KB
testcase_05 AC 38 ms
52,756 KB
testcase_06 AC 39 ms
52,048 KB
testcase_07 AC 38 ms
52,628 KB
testcase_08 AC 38 ms
53,468 KB
testcase_09 AC 38 ms
53,220 KB
testcase_10 AC 37 ms
52,272 KB
testcase_11 AC 37 ms
52,124 KB
testcase_12 AC 40 ms
52,952 KB
testcase_13 AC 70 ms
71,020 KB
testcase_14 AC 145 ms
76,980 KB
testcase_15 AC 455 ms
77,016 KB
testcase_16 AC 38 ms
51,752 KB
testcase_17 AC 443 ms
77,504 KB
testcase_18 AC 461 ms
77,044 KB
testcase_19 AC 439 ms
77,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	N = int(input())
	if abs(N) == 1:
		print("Yes")
	else:
		print("No")
	c = 0
	a = N ** 4 + 4
	while a % 10 == 0:
		c += 1
		a //= 10
	print(c)
0