結果

問題 No.36 素数が嫌い!
ユーザー vwxyzvwxyz
提出日時 2022-02-17 02:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 59,596 KB
最終ジャッジ日時 2024-06-29 07:27:01
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
58,188 KB
testcase_01 AC 124 ms
58,032 KB
testcase_02 AC 34 ms
52,532 KB
testcase_03 AC 33 ms
52,468 KB
testcase_04 AC 32 ms
52,652 KB
testcase_05 AC 36 ms
57,832 KB
testcase_06 AC 39 ms
58,512 KB
testcase_07 AC 37 ms
58,128 KB
testcase_08 AC 36 ms
59,492 KB
testcase_09 AC 37 ms
59,372 KB
testcase_10 AC 36 ms
57,928 KB
testcase_11 AC 76 ms
58,140 KB
testcase_12 AC 148 ms
58,032 KB
testcase_13 AC 146 ms
58,144 KB
testcase_14 AC 119 ms
58,820 KB
testcase_15 AC 33 ms
52,988 KB
testcase_16 AC 33 ms
52,456 KB
testcase_17 AC 32 ms
52,556 KB
testcase_18 AC 35 ms
58,044 KB
testcase_19 AC 80 ms
57,984 KB
testcase_20 AC 148 ms
58,184 KB
testcase_21 AC 122 ms
57,852 KB
testcase_22 AC 123 ms
59,596 KB
testcase_23 AC 91 ms
58,352 KB
testcase_24 AC 94 ms
58,904 KB
testcase_25 AC 93 ms
59,564 KB
testcase_26 AC 103 ms
57,908 KB
testcase_27 AC 150 ms
58,248 KB
testcase_28 AC 101 ms
58,492 KB
testcase_29 AC 166 ms
59,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
cnt=0
for p in range(2,int(N**.5)+1):
    while N%p==0:
        N//=p
        cnt+=1
if N!=1:
    cnt+=1
if cnt>=3:
    ans='YES'
else:
    ans='NO'
print(ans)
0