結果

問題 No.36 素数が嫌い!
ユーザー GrayCoderGrayCoder
提出日時 2018-08-13 18:41:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 566 ms / 5,000 ms
コード長 1,512 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 56,856 KB
最終ジャッジ日時 2024-09-24 08:05:25
合計ジャッジ時間 6,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
32,740 KB
testcase_01 AC 264 ms
46,888 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 32 ms
11,136 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 31 ms
11,136 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 170 ms
26,324 KB
testcase_12 AC 446 ms
56,856 KB
testcase_13 AC 443 ms
56,676 KB
testcase_14 AC 209 ms
39,996 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 142 ms
29,460 KB
testcase_20 AC 339 ms
56,672 KB
testcase_21 AC 251 ms
46,332 KB
testcase_22 AC 254 ms
47,320 KB
testcase_23 AC 165 ms
33,304 KB
testcase_24 AC 298 ms
35,664 KB
testcase_25 AC 178 ms
35,100 KB
testcase_26 AC 565 ms
39,324 KB
testcase_27 AC 399 ms
50,384 KB
testcase_28 AC 566 ms
38,704 KB
testcase_29 AC 432 ms
55,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout

input = lambda: stdin.readline()
write = stdout.write

def primes235(limit):
    yield 2; yield 3; yield 5
    if limit < 7: return
    modPrms = [7,11,13,17,19,23,29,31]
    gaps = [4,2,4,2,4,6,2,6,4,2,4,2,4,6,2,6]
    ndxs = [0,0,0,0,1,1,2,2,2,2,3,3,4,4,4,4,5,5,5,5,5,5,6,6,7,7,7,7,7,7]
    lmtbf = (limit + 23) // 30 * 8 - 1
    lmtsqrt = (int(limit ** 0.5) - 7)
    lmtsqrt = lmtsqrt // 30 * 8 + ndxs[lmtsqrt % 30]
    buf = [True] * (lmtbf + 1)
    for i in range(lmtsqrt + 1):
        if buf[i]:
            ci = i & 7; p = 30 * (i >> 3) + modPrms[ci]
            s = p * p - 7; p8 = p << 3
            for j in range(8):
                c = s // 30 * 8 + ndxs[s % 30]
                buf[c::p8] = [False] * ((lmtbf - c) // p8 + 1)
                s += p * gaps[ci]; ci += 1
    for i in range(lmtbf - 6 + (ndxs[(limit - 7) % 30])):
        if buf[i]: yield (30 * (i >> 3) + modPrms[i & 7])

def is_prime(n):
    if n == 2:
        return True
    if n < 2 or not n & 1:
        return False

    for i in range(3, n, 2):
        if not n % i:
            return False
        if i * i >= n:
            break
    return True

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

    if N < 8:
        write('NO\n')
        return

    n = int(N ** 0.5)
    prime_list = []
    for i in primes235(n):
        prime_list.append(i)

    for i in prime_list:
        d, m = divmod(N, i)
        if not m and not is_prime(d):
            write('YES\n')
            return
    write('NO\n')

main()
0