結果

問題 No.36 素数が嫌い!
ユーザー colognecologne
提出日時 2022-01-23 17:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-11-29 19:31:15
合計ジャッジ時間 3,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
74,644 KB
testcase_01 AC 46 ms
59,520 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 39 ms
51,200 KB
testcase_05 AC 42 ms
57,728 KB
testcase_06 AC 42 ms
57,984 KB
testcase_07 AC 42 ms
57,472 KB
testcase_08 AC 38 ms
51,328 KB
testcase_09 AC 38 ms
51,200 KB
testcase_10 AC 41 ms
57,216 KB
testcase_11 AC 108 ms
74,752 KB
testcase_12 AC 226 ms
74,624 KB
testcase_13 AC 229 ms
74,636 KB
testcase_14 AC 43 ms
57,984 KB
testcase_15 AC 39 ms
51,456 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 38 ms
51,584 KB
testcase_18 AC 39 ms
51,200 KB
testcase_19 AC 52 ms
63,488 KB
testcase_20 AC 49 ms
61,952 KB
testcase_21 AC 72 ms
75,008 KB
testcase_22 AC 45 ms
59,136 KB
testcase_23 AC 42 ms
58,112 KB
testcase_24 AC 73 ms
74,624 KB
testcase_25 AC 81 ms
74,240 KB
testcase_26 AC 112 ms
74,240 KB
testcase_27 AC 46 ms
59,648 KB
testcase_28 AC 111 ms
74,752 KB
testcase_29 AC 43 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import sys

input = sys.stdin.readline


def main():
    N = int(input())
    factor = 0
    for i in itertools.count(2):
        if i*i > N:
            break
        while N % i == 0:
            N //= i
            factor += 1

    if N != 1:
        factor += 1

    print('YES' if factor >= 3 else 'NO')


if __name__ == '__main__':
    main()
0