結果

問題 No.36 素数が嫌い!
ユーザー zimphazimpha
提出日時 2017-12-13 22:34:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 694 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 112,044 KB
最終ジャッジ日時 2024-12-14 10:13:02
合計ジャッジ時間 86,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,504 KB
testcase_01 TLE -
testcase_02 AC 40 ms
110,480 KB
testcase_03 AC 40 ms
111,300 KB
testcase_04 AC 41 ms
110,068 KB
testcase_05 AC 40 ms
61,024 KB
testcase_06 TLE -
testcase_07 AC 40 ms
59,296 KB
testcase_08 AC 41 ms
110,860 KB
testcase_09 AC 41 ms
110,124 KB
testcase_10 TLE -
testcase_11 AC 41 ms
112,044 KB
testcase_12 AC 40 ms
111,688 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 39 ms
52,072 KB
testcase_16 AC 38 ms
52,616 KB
testcase_17 AC 40 ms
52,532 KB
testcase_18 AC 40 ms
53,216 KB
testcase_19 AC 40 ms
52,912 KB
testcase_20 TLE -
testcase_21 AC 41 ms
53,080 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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')
0