結果
問題 | No.36 素数が嫌い! |
ユーザー | zimpha |
提出日時 | 2017-12-13 22:34:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 694 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 65,232 KB |
最終ジャッジ日時 | 2024-05-08 07:55:08 |
合計ジャッジ時間 | 6,892 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,096 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
def is_prime(n): if n <= 1: return False if n <= 3: return True if n % 2 == 0: return False u = [2, 3, 5, 7, 325, 9375, 28178, 450775, 9780504, 1795265022] e, c = n - 1, 0 while e % 2 == 0: e >>= 1 c += 1 for p in u: if n <= p: return True a = pow(p, e, n) if a == 1: continue j = 1 while a != n - 1: if j == c: return False a = a * a % n j += 1 return True def valid(n): if n == 1 or is_prime(n): return False i = 2 while i ** 3 <= n: if n % i == 0: n //= i if n == 1 or is_prime(n): return False else: return True return False print('YES' if valid(int(input())) else 'NO')