結果

問題 No.36 素数が嫌い!
ユーザー ああいいああいい
提出日時 2022-03-02 14:57:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 59,192 KB
最終ジャッジ日時 2024-07-16 08:03:00
合計ジャッジ時間 2,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
58,616 KB
testcase_01 AC 43 ms
57,456 KB
testcase_02 AC 38 ms
52,280 KB
testcase_03 AC 37 ms
53,640 KB
testcase_04 AC 36 ms
52,992 KB
testcase_05 AC 43 ms
57,596 KB
testcase_06 AC 41 ms
57,952 KB
testcase_07 AC 40 ms
58,792 KB
testcase_08 AC 38 ms
52,748 KB
testcase_09 AC 41 ms
52,064 KB
testcase_10 AC 41 ms
58,988 KB
testcase_11 AC 81 ms
59,192 KB
testcase_12 AC 166 ms
58,068 KB
testcase_13 AC 163 ms
57,640 KB
testcase_14 AC 40 ms
58,012 KB
testcase_15 AC 36 ms
53,192 KB
testcase_16 AC 38 ms
52,484 KB
testcase_17 AC 37 ms
52,916 KB
testcase_18 AC 40 ms
53,236 KB
testcase_19 AC 47 ms
57,944 KB
testcase_20 AC 45 ms
57,816 KB
testcase_21 AC 58 ms
57,380 KB
testcase_22 AC 41 ms
58,032 KB
testcase_23 AC 40 ms
58,008 KB
testcase_24 AC 59 ms
58,852 KB
testcase_25 AC 64 ms
58,844 KB
testcase_26 AC 89 ms
58,188 KB
testcase_27 AC 44 ms
58,076 KB
testcase_28 AC 90 ms
58,868 KB
testcase_29 AC 42 ms
58,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
count = 0
i = 2
while i * i <= N:
    if N % i == 0:
        while N % i == 0:
            count += 1
            N //= i
    i += 1
if N != 1:
    count += 1
if count <= 2:
    print('NO')
else:
    print('YES')
0