結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
58,388 KB
testcase_01 AC 41 ms
58,296 KB
testcase_02 AC 34 ms
53,056 KB
testcase_03 AC 33 ms
52,016 KB
testcase_04 AC 34 ms
52,680 KB
testcase_05 AC 36 ms
58,492 KB
testcase_06 AC 35 ms
58,304 KB
testcase_07 AC 36 ms
58,940 KB
testcase_08 AC 32 ms
52,772 KB
testcase_09 AC 32 ms
52,232 KB
testcase_10 AC 37 ms
58,644 KB
testcase_11 AC 72 ms
59,172 KB
testcase_12 AC 152 ms
59,044 KB
testcase_13 AC 148 ms
59,256 KB
testcase_14 AC 37 ms
59,444 KB
testcase_15 AC 32 ms
52,464 KB
testcase_16 AC 33 ms
53,060 KB
testcase_17 AC 34 ms
52,076 KB
testcase_18 AC 33 ms
52,692 KB
testcase_19 AC 40 ms
58,444 KB
testcase_20 AC 39 ms
59,776 KB
testcase_21 AC 53 ms
58,992 KB
testcase_22 AC 36 ms
58,180 KB
testcase_23 AC 36 ms
58,356 KB
testcase_24 AC 55 ms
58,860 KB
testcase_25 AC 60 ms
59,048 KB
testcase_26 AC 89 ms
58,288 KB
testcase_27 AC 40 ms
59,244 KB
testcase_28 AC 83 ms
59,052 KB
testcase_29 AC 38 ms
58,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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