結果

問題 No.2785 四乗足す四の末尾の0
ユーザー 👑 p-adicp-adic
提出日時 2023-02-24 01:48:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 77,404 KB
最終ジャッジ日時 2024-09-24 15:42:13
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,548 KB
testcase_01 AC 34 ms
52,424 KB
testcase_02 AC 34 ms
52,704 KB
testcase_03 AC 34 ms
52,752 KB
testcase_04 AC 34 ms
51,872 KB
testcase_05 AC 34 ms
52,664 KB
testcase_06 AC 35 ms
52,460 KB
testcase_07 AC 34 ms
52,208 KB
testcase_08 AC 33 ms
52,412 KB
testcase_09 AC 32 ms
52,900 KB
testcase_10 AC 35 ms
53,008 KB
testcase_11 AC 32 ms
52,204 KB
testcase_12 AC 34 ms
53,500 KB
testcase_13 AC 61 ms
72,240 KB
testcase_14 AC 136 ms
77,404 KB
testcase_15 AC 402 ms
77,288 KB
testcase_16 AC 33 ms
52,952 KB
testcase_17 AC 425 ms
77,324 KB
testcase_18 AC 429 ms
76,968 KB
testcase_19 AC 419 ms
77,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,P=input,print
for t in range(int(I())):
	N=int(I())
	if abs(N)-1:
		N,c=N**4+4,0
		while N%10<1:N,c=N//10,c+1
		P("No"),P(c)
	else:P("Yes"),P(0)
0