結果

問題 No.2785 四乗足す四の末尾の0
ユーザー rlangevinrlangevin
提出日時 2024-06-14 22:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 77,520 KB
最終ジャッジ日時 2024-06-14 22:19:11
合計ジャッジ時間 3,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,632 KB
testcase_01 AC 37 ms
52,208 KB
testcase_02 AC 39 ms
52,440 KB
testcase_03 AC 38 ms
53,440 KB
testcase_04 AC 37 ms
52,464 KB
testcase_05 AC 38 ms
52,516 KB
testcase_06 AC 38 ms
53,688 KB
testcase_07 AC 37 ms
53,172 KB
testcase_08 AC 39 ms
52,424 KB
testcase_09 AC 38 ms
52,676 KB
testcase_10 AC 38 ms
52,072 KB
testcase_11 AC 42 ms
53,564 KB
testcase_12 AC 40 ms
52,860 KB
testcase_13 AC 55 ms
64,448 KB
testcase_14 AC 96 ms
76,692 KB
testcase_15 AC 162 ms
77,168 KB
testcase_16 AC 39 ms
52,596 KB
testcase_17 AC 158 ms
76,856 KB
testcase_18 AC 178 ms
77,520 KB
testcase_19 AC 166 ms
77,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline



def f(n):
    return n**2 + 2*n + 2

def g(n):
    return n**2 - 2*n + 2

T = int(input())
for _ in range(T):
    n = int(input())
    if n == 1 or n == -1:
        print("Yes")
    else:
        print("No")
    a = f(n)
    b = g(n)
    two, five = 0, 0
    while a % 2 == 0:
        two += 1
        a //= 2
    while a % 5 == 0:
        five += 1
        a //= 5
    while b % 2 == 0:
        two += 1
        b //= 2
    while b % 5 == 0:
        five += 1
        b //= 5
    print(min(two, five))
0