結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,457 ms
8,576 KB
testcase_02 AC 1,437 ms
8,704 KB
testcase_03 AC 1,442 ms
8,832 KB
testcase_04 AC 1,448 ms
8,704 KB
testcase_05 AC 1,468 ms
8,832 KB
testcase_06 AC 1,447 ms
8,832 KB
testcase_07 AC 1,464 ms
8,576 KB
testcase_08 AC 1,470 ms
8,832 KB
testcase_09 AC 1,455 ms
8,832 KB
testcase_10 AC 1,446 ms
8,832 KB
testcase_11 AC 1,467 ms
8,704 KB
testcase_12 AC 1,473 ms
8,704 KB
testcase_13 AC 1,462 ms
8,832 KB
testcase_14 AC 1,466 ms
8,704 KB
testcase_15 AC 1,441 ms
8,832 KB
testcase_16 AC 1,445 ms
8,832 KB
testcase_17 AC 1,450 ms
8,832 KB
testcase_18 AC 1,449 ms
8,832 KB
testcase_19 AC 1,475 ms
8,704 KB
testcase_20 AC 1,471 ms
8,832 KB
testcase_21 WA -
testcase_22 AC 1,463 ms
8,832 KB
testcase_23 AC 1,521 ms
8,832 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1,457 ms
8,832 KB
testcase_27 AC 1,444 ms
8,832 KB
testcase_28 AC 1,476 ms
8,704 KB
testcase_29 AC 1,458 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