結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
62,548 KB
testcase_01 AC 41 ms
55,464 KB
testcase_02 AC 41 ms
54,460 KB
testcase_03 AC 42 ms
54,256 KB
testcase_04 AC 41 ms
54,492 KB
testcase_05 AC 43 ms
53,916 KB
testcase_06 AC 42 ms
55,584 KB
testcase_07 AC 42 ms
55,412 KB
testcase_08 AC 41 ms
54,292 KB
testcase_09 AC 45 ms
54,488 KB
testcase_10 AC 42 ms
54,660 KB
testcase_11 AC 41 ms
55,128 KB
testcase_12 AC 50 ms
61,644 KB
testcase_13 AC 129 ms
76,608 KB
testcase_14 AC 618 ms
77,892 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(12)):
		print("Yes")
	else:
		print("No")
	c = 0
	while a % 10 == 0:
		c += 1
		a //= 10
	print(c)
0