結果
問題 | No.2785 四乗足す四の末尾の0 |
ユーザー | hiro1729 |
提出日時 | 2024-06-14 21:40:58 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 621 bytes |
コンパイル時間 | 346 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 86,124 KB |
最終ジャッジ日時 | 2024-06-14 21:41:04 |
合計ジャッジ時間 | 5,756 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
61,708 KB |
testcase_01 | AC | 42 ms
54,188 KB |
testcase_02 | AC | 42 ms
54,960 KB |
testcase_03 | AC | 46 ms
55,144 KB |
testcase_04 | AC | 43 ms
55,372 KB |
testcase_05 | AC | 42 ms
55,396 KB |
testcase_06 | AC | 42 ms
54,368 KB |
testcase_07 | AC | 42 ms
55,048 KB |
testcase_08 | AC | 44 ms
54,348 KB |
testcase_09 | AC | 43 ms
54,856 KB |
testcase_10 | AC | 43 ms
54,184 KB |
testcase_11 | AC | 42 ms
55,652 KB |
testcase_12 | AC | 51 ms
60,532 KB |
testcase_13 | AC | 127 ms
76,444 KB |
testcase_14 | AC | 624 ms
77,424 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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(20)): print("Yes") else: print("No") c = 0 while a % 10 == 0: c += 1 a //= 10 print(c)