結果

問題 No.36 素数が嫌い!
ユーザー しらっ亭しらっ亭
提出日時 2015-07-29 03:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 184,832 KB
最終ジャッジ日時 2024-06-27 00:22:17
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
118,784 KB
testcase_01 AC 415 ms
158,208 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 50 ms
60,160 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 44 ms
60,672 KB
testcase_08 AC 42 ms
58,752 KB
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 44 ms
59,904 KB
testcase_11 AC 177 ms
101,760 KB
testcase_12 AC 526 ms
184,192 KB
testcase_13 AC 522 ms
184,832 KB
testcase_14 AC 323 ms
137,472 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 38 ms
52,608 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 47 ms
59,008 KB
testcase_19 AC 214 ms
110,208 KB
testcase_20 AC 534 ms
184,576 KB
testcase_21 AC 412 ms
156,544 KB
testcase_22 AC 423 ms
158,336 KB
testcase_23 AC 258 ms
119,680 KB
testcase_24 AC 291 ms
126,848 KB
testcase_25 AC 283 ms
125,952 KB
testcase_26 AC 337 ms
135,808 KB
testcase_27 AC 465 ms
168,704 KB
testcase_28 AC 322 ms
135,296 KB
testcase_29 AC 517 ms
182,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import math


def mark(s, x):
    for i in range(x + x, len(s), x):
        s[i] = False


def sieve(n):
    s = [True] * n
    for x in range(2, int(n ** 0.5) + 1):
        if s[x]:
            mark(s, x)
    return [i for i in range(n) if s[i] and i > 1]


def solve():
    N = int(input())

    ps = sieve(int(math.sqrt(N)) + 1)
    ys = []
    i = 0
    while i < len(ps):
        p = ps[i]
        d, m = divmod(N, p)
        if m == 0:
            ys.append(p)
            N = d
            if len(ys) >= 3:
                return True
        else:
            i += 1
    if N > 1:
        ys.append(N)
    return len(ys) >= 3


def main():
    print('YES' if solve() else 'NO')


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