結果

問題 No.2785 四乗足す四の末尾の0
ユーザー hiro1729hiro1729
提出日時 2024-06-14 21:40:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 621 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 86,680 KB
最終ジャッジ日時 2024-06-14 21:40:47
合計ジャッジ時間 5,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
62,020 KB
testcase_01 AC 36 ms
54,644 KB
testcase_02 AC 37 ms
55,292 KB
testcase_03 AC 36 ms
54,440 KB
testcase_04 AC 36 ms
54,540 KB
testcase_05 AC 37 ms
55,004 KB
testcase_06 AC 36 ms
56,200 KB
testcase_07 AC 37 ms
54,436 KB
testcase_08 AC 37 ms
54,404 KB
testcase_09 AC 36 ms
54,580 KB
testcase_10 AC 36 ms
54,768 KB
testcase_11 AC 43 ms
54,336 KB
testcase_12 AC 42 ms
61,196 KB
testcase_13 AC 108 ms
76,276 KB
testcase_14 AC 525 ms
77,536 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

def Miller_Rabin_test(num):
    if num == 2:
        return True
    if num == 1 or (num > 2 and num & 1 == 0):
        return False

    s, t = 0, num-1
    while t & 1 == 0:
        s, t = s+1, t >> 1
    a = random.randint(1, num-1)
    if pow(a, t, num) == 1:
        return True
    for i in range(0, s):
        if pow(a, pow(2, i) * t, num) == num-1:
            return True
    return False

for _ in range(int(input())):
	N = int(input())
	a = N ** 4 + 4
	if all(Miller_Rabin_test(a) for _ in range(30)):
		print("Yes")
	else:
		print("No")
	c = 0
	while a % 10 == 0:
		c += 1
		a //= 10
	print(c)
0