結果

問題 No.2785 四乗足す四の末尾の0
ユーザー tkykwtnbtkykwtnb
提出日時 2024-06-14 22:23:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 319 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-14 22:24:01
合計ジャッジ時間 4,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,472 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 33 ms
51,968 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 34 ms
51,968 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 39 ms
52,864 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(i):
    if i<=1:return False
    for j in range(2,int(i**0.5)+1):
        if i%j==0:return False
    return True
T=int(input())
for _ in range(T):
    N=int(input())
    n=N**4+4
    if is_prime(n):print("Yes")
    else:print("No")
    cnt=0
    while n%10==0:
        cnt+=1
        n//=10
    print(cnt)
0