結果

問題 No.2785 四乗足す四の末尾の0
ユーザー ニックネームニックネーム
提出日時 2024-06-14 22:08:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 475 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 77,280 KB
最終ジャッジ日時 2024-06-14 22:08:47
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,104 KB
testcase_01 AC 36 ms
52,320 KB
testcase_02 AC 37 ms
52,624 KB
testcase_03 AC 37 ms
51,956 KB
testcase_04 AC 37 ms
52,068 KB
testcase_05 AC 37 ms
52,072 KB
testcase_06 AC 36 ms
52,304 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 38 ms
52,928 KB
testcase_09 AC 37 ms
52,252 KB
testcase_10 AC 38 ms
52,408 KB
testcase_11 AC 36 ms
53,104 KB
testcase_12 AC 40 ms
53,620 KB
testcase_13 AC 71 ms
71,288 KB
testcase_14 AC 156 ms
77,280 KB
testcase_15 AC 475 ms
77,020 KB
testcase_16 AC 38 ms
52,708 KB
testcase_17 AC 454 ms
77,200 KB
testcase_18 AC 461 ms
76,920 KB
testcase_19 AC 459 ms
76,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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