結果

問題 No.36 素数が嫌い!
ユーザー togatogatogatoga
提出日時 2015-09-02 10:45:56
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 191 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-27 00:25:06
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
76,672 KB
testcase_01 AC 88 ms
76,672 KB
testcase_02 AC 84 ms
75,392 KB
testcase_03 AC 86 ms
75,136 KB
testcase_04 AC 84 ms
75,392 KB
testcase_05 AC 81 ms
76,324 KB
testcase_06 AC 84 ms
76,544 KB
testcase_07 AC 84 ms
76,160 KB
testcase_08 AC 83 ms
75,392 KB
testcase_09 AC 82 ms
75,648 KB
testcase_10 AC 83 ms
76,780 KB
testcase_11 AC 126 ms
76,032 KB
testcase_12 AC 217 ms
76,672 KB
testcase_13 AC 212 ms
76,032 KB
testcase_14 AC 85 ms
76,160 KB
testcase_15 AC 83 ms
75,776 KB
testcase_16 AC 81 ms
75,776 KB
testcase_17 AC 82 ms
75,392 KB
testcase_18 AC 83 ms
75,648 KB
testcase_19 AC 90 ms
76,288 KB
testcase_20 AC 89 ms
76,928 KB
testcase_21 AC 107 ms
76,544 KB
testcase_22 AC 86 ms
76,672 KB
testcase_23 AC 85 ms
76,544 KB
testcase_24 AC 107 ms
76,928 KB
testcase_25 AC 114 ms
76,416 KB
testcase_26 AC 139 ms
76,800 KB
testcase_27 AC 89 ms
76,800 KB
testcase_28 AC 141 ms
76,288 KB
testcase_29 AC 88 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
cnt = 0
for i in range(2, N):
    if (i * i > N):
        break
    while (N % i == 0):
        cnt += 1
        N /= i
if (N != 1):
    cnt += 1
print "YES" if cnt > 2 else "NO"
0