結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
57,744 KB
testcase_01 AC 192 ms
57,496 KB
testcase_02 AC 198 ms
57,388 KB
testcase_03 AC 190 ms
57,868 KB
testcase_04 AC 193 ms
58,660 KB
testcase_05 AC 179 ms
58,716 KB
testcase_06 AC 166 ms
58,300 KB
testcase_07 AC 167 ms
59,104 KB
testcase_08 AC 187 ms
57,964 KB
testcase_09 AC 188 ms
57,452 KB
testcase_10 AC 189 ms
57,380 KB
testcase_11 AC 160 ms
58,696 KB
testcase_12 AC 166 ms
57,888 KB
testcase_13 AC 167 ms
57,724 KB
testcase_14 AC 185 ms
58,508 KB
testcase_15 AC 194 ms
58,264 KB
testcase_16 AC 192 ms
58,960 KB
testcase_17 AC 171 ms
57,648 KB
testcase_18 AC 191 ms
58,368 KB
testcase_19 AC 180 ms
57,916 KB
testcase_20 AC 193 ms
58,556 KB
testcase_21 AC 191 ms
59,452 KB
testcase_22 AC 193 ms
57,716 KB
testcase_23 AC 190 ms
58,980 KB
testcase_24 AC 190 ms
59,204 KB
testcase_25 AC 194 ms
58,244 KB
testcase_26 AC 188 ms
58,708 KB
testcase_27 AC 184 ms
58,728 KB
testcase_28 AC 192 ms
58,896 KB
testcase_29 AC 186 ms
59,088 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