結果

問題 No.36 素数が嫌い!
ユーザー nebukuro09nebukuro09
提出日時 2016-10-27 14:20:00
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 76,840 KB
最終ジャッジ日時 2024-06-27 00:50:35
合計ジャッジ時間 5,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
76,840 KB
testcase_01 AC 176 ms
76,432 KB
testcase_02 AC 88 ms
75,452 KB
testcase_03 AC 89 ms
75,656 KB
testcase_04 AC 86 ms
75,536 KB
testcase_05 AC 87 ms
76,544 KB
testcase_06 AC 93 ms
76,672 KB
testcase_07 AC 90 ms
76,312 KB
testcase_08 AC 89 ms
75,296 KB
testcase_09 AC 87 ms
75,524 KB
testcase_10 AC 90 ms
76,416 KB
testcase_11 AC 132 ms
76,544 KB
testcase_12 AC 213 ms
76,288 KB
testcase_13 AC 214 ms
76,544 KB
testcase_14 AC 89 ms
76,312 KB
testcase_15 AC 88 ms
75,648 KB
testcase_16 AC 85 ms
75,392 KB
testcase_17 AC 88 ms
75,904 KB
testcase_18 AC 86 ms
75,776 KB
testcase_19 AC 148 ms
76,288 KB
testcase_20 AC 239 ms
76,324 KB
testcase_21 AC 203 ms
76,544 KB
testcase_22 AC 206 ms
76,672 KB
testcase_23 AC 162 ms
76,672 KB
testcase_24 AC 115 ms
76,416 KB
testcase_25 AC 167 ms
76,416 KB
testcase_26 AC 176 ms
76,428 KB
testcase_27 AC 220 ms
76,220 KB
testcase_28 AC 180 ms
76,176 KB
testcase_29 AC 235 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = input()
rootN = int(math.sqrt(N))
i = 2
c = 0
while i <= rootN:
    while N % i == 0:
        N /= i
        c += 1
    if c > 2:
        print 'YES'
        exit()
    i += 1
if c == 2 and N > 1:
    print 'YES'
else:
    print 'NO'
0