結果

問題 No.36 素数が嫌い!
ユーザー gahougahou
提出日時 2016-12-16 17:24:59
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-11-30 10:32:27
合計ジャッジ時間 44,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,402 ms
8,576 KB
testcase_02 AC 1,400 ms
8,704 KB
testcase_03 AC 1,412 ms
8,576 KB
testcase_04 AC 1,387 ms
8,704 KB
testcase_05 AC 1,431 ms
8,704 KB
testcase_06 AC 1,377 ms
8,576 KB
testcase_07 AC 1,396 ms
8,576 KB
testcase_08 AC 1,395 ms
8,832 KB
testcase_09 AC 1,365 ms
8,704 KB
testcase_10 AC 1,366 ms
8,576 KB
testcase_11 AC 1,391 ms
8,704 KB
testcase_12 AC 1,399 ms
8,704 KB
testcase_13 AC 1,395 ms
8,704 KB
testcase_14 AC 1,386 ms
8,576 KB
testcase_15 AC 1,414 ms
8,832 KB
testcase_16 AC 1,371 ms
8,576 KB
testcase_17 AC 1,388 ms
8,704 KB
testcase_18 AC 1,391 ms
8,704 KB
testcase_19 AC 1,394 ms
8,576 KB
testcase_20 AC 1,407 ms
8,832 KB
testcase_21 WA -
testcase_22 AC 1,369 ms
8,704 KB
testcase_23 AC 1,393 ms
8,704 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,422 ms
8,704 KB
testcase_27 AC 1,400 ms
8,704 KB
testcase_28 AC 1,431 ms
8,832 KB
testcase_29 AC 1,414 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes():
  p=[2,3]
  i=5
  while True:
    isPrime = True
    for k in p:
      if i%k==0:
        isPrime = False
        break
      if i<k**2: break
    if isPrime: p.append(i)
    if 10**6<i: break
    i+=2
  return p

n=int(raw_input())
p=primes()
isValid=False
d={}
for k in p:
  c=0
  while True:
    if n%k==0:
      c+=1
      n/=k
    else:
      break
  if c>0:
    d[k]=c
  if n<k**2:
    if n!=1:
      d[n]=1
    break
count = sum(d.values())
if count>=3: print "YES"
else: print "NO"
0