結果

問題 No.2785 四乗足す四の末尾の0
ユーザー ShirotsumeShirotsume
提出日時 2024-06-14 22:09:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,113 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 89,400 KB
最終ジャッジ日時 2024-06-14 22:09:54
合計ジャッジ時間 9,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,040 KB
testcase_01 AC 42 ms
57,080 KB
testcase_02 AC 40 ms
56,112 KB
testcase_03 AC 42 ms
56,324 KB
testcase_04 AC 45 ms
56,792 KB
testcase_05 AC 41 ms
56,352 KB
testcase_06 AC 41 ms
56,856 KB
testcase_07 AC 43 ms
55,820 KB
testcase_08 AC 47 ms
56,656 KB
testcase_09 AC 42 ms
56,232 KB
testcase_10 AC 40 ms
56,852 KB
testcase_11 AC 39 ms
56,180 KB
testcase_12 AC 41 ms
58,644 KB
testcase_13 AC 78 ms
76,644 KB
testcase_14 AC 217 ms
78,744 KB
testcase_15 AC 1,354 ms
87,624 KB
testcase_16 AC 44 ms
55,680 KB
testcase_17 TLE -
testcase_18 AC 1,901 ms
88,448 KB
testcase_19 AC 1,937 ms
88,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

from math import gcd
def isprime(n):
    if n <= 2:
        return n == 2
    if n % 2 == 0:
        return False
    s = 0
    t = n - 1
    while t % 2 == 0:
        s += 1
        t //= 2
    
    for a in [2,325,9375,28178,450775]:
        if a >= n:
            break
        x = pow(a, t, n)
        if x == 1 or x == n - 1:
            continue
        for _ in range(s):
            x = (x * x) % n
            if x == n - 1:
                break
        if x == n - 1:
            continue

        return False
    return True

for _ in range(ii()):
    n =ii()
    N = n ** 4 + 4
    p = isprime(N)
    print('Yes' if p else 'No')
    if p:
        print(0)
    else:
        N = str(N)
        cnt = 0
        for i in range(1, len(N) + 1):
            if N[-i] == '0':
                cnt += 1
            else:
                break
        print(cnt)
0