結果

問題 No.36 素数が嫌い!
ユーザー nebukuro09nebukuro09
提出日時 2016-10-27 14:13:53
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 204 bytes
コンパイル時間 1,652 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-24 04:55:04
合計ジャッジ時間 7,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 175 ms
76,288 KB
testcase_02 AC 87 ms
75,264 KB
testcase_03 AC 88 ms
75,264 KB
testcase_04 AC 89 ms
75,264 KB
testcase_05 AC 91 ms
76,544 KB
testcase_06 AC 95 ms
76,160 KB
testcase_07 AC 90 ms
76,544 KB
testcase_08 AC 88 ms
75,136 KB
testcase_09 AC 88 ms
75,136 KB
testcase_10 WA -
testcase_11 AC 131 ms
76,288 KB
testcase_12 AC 215 ms
76,032 KB
testcase_13 AC 215 ms
76,288 KB
testcase_14 AC 90 ms
76,160 KB
testcase_15 AC 88 ms
75,520 KB
testcase_16 AC 86 ms
75,136 KB
testcase_17 AC 86 ms
75,392 KB
testcase_18 AC 88 ms
74,880 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 115 ms
76,544 KB
testcase_25 WA -
testcase_26 AC 179 ms
76,160 KB
testcase_27 AC 218 ms
76,288 KB
testcase_28 AC 177 ms
76,288 KB
testcase_29 AC 235 ms
76,032 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
print 'NO'
0