結果

問題 No.36 素数が嫌い!
ユーザー KudeKude
提出日時 2020-09-05 23:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 59,280 KB
最終ジャッジ日時 2024-11-29 06:18:52
合計ジャッジ時間 6,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
58,120 KB
testcase_01 AC 194 ms
57,892 KB
testcase_02 AC 192 ms
58,004 KB
testcase_03 AC 183 ms
57,764 KB
testcase_04 AC 180 ms
57,640 KB
testcase_05 AC 179 ms
58,148 KB
testcase_06 AC 159 ms
58,920 KB
testcase_07 AC 171 ms
58,452 KB
testcase_08 AC 185 ms
57,988 KB
testcase_09 AC 180 ms
57,764 KB
testcase_10 AC 181 ms
58,176 KB
testcase_11 AC 156 ms
58,044 KB
testcase_12 AC 160 ms
57,988 KB
testcase_13 AC 159 ms
59,228 KB
testcase_14 AC 178 ms
58,160 KB
testcase_15 AC 181 ms
59,280 KB
testcase_16 AC 179 ms
57,596 KB
testcase_17 AC 159 ms
58,216 KB
testcase_18 AC 185 ms
58,396 KB
testcase_19 AC 176 ms
58,680 KB
testcase_20 AC 176 ms
58,528 KB
testcase_21 AC 176 ms
57,908 KB
testcase_22 AC 183 ms
57,972 KB
testcase_23 AC 179 ms
58,268 KB
testcase_24 AC 179 ms
58,932 KB
testcase_25 AC 182 ms
59,180 KB
testcase_26 AC 182 ms
57,924 KB
testcase_27 AC 177 ms
59,052 KB
testcase_28 AC 180 ms
58,372 KB
testcase_29 AC 173 ms
58,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = 0
for p in range(2, 10 ** 7):
    while n % p == 0:
        n //= p
        cnt += 1
cnt += n > 1
print('YES' if cnt >= 3 else 'NO')
0