結果

問題 No.2785 四乗足す四の末尾の0
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-14 22:00:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 78,016 KB
最終ジャッジ日時 2024-06-14 22:00:36
合計ジャッジ時間 4,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,408 KB
testcase_01 AC 38 ms
53,232 KB
testcase_02 AC 37 ms
53,092 KB
testcase_03 AC 37 ms
52,276 KB
testcase_04 AC 40 ms
52,284 KB
testcase_05 AC 40 ms
52,792 KB
testcase_06 AC 38 ms
52,504 KB
testcase_07 AC 39 ms
52,460 KB
testcase_08 AC 40 ms
52,516 KB
testcase_09 AC 39 ms
51,820 KB
testcase_10 AC 38 ms
52,548 KB
testcase_11 AC 39 ms
53,360 KB
testcase_12 AC 40 ms
52,792 KB
testcase_13 AC 68 ms
69,172 KB
testcase_14 AC 171 ms
78,016 KB
testcase_15 AC 381 ms
77,424 KB
testcase_16 AC 39 ms
52,272 KB
testcase_17 AC 355 ms
76,864 KB
testcase_18 AC 383 ms
78,016 KB
testcase_19 AC 356 ms
76,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    print('Yes' if abs(N) == 1 else 'No')
    a = (N - 1)**2 + 1
    b = (N + 1)**2 + 1
    res = 0
    while a % 10 == 0:
        a //= 10
        res += 1
    while b % 10 == 0:
        b //= 10
        res += 1
    c = a * b
    while c % 10 == 0:
        c //= 10
        res += 1
    print(res)
0