結果

問題 No.843 Triple Primes
ユーザー GrayCoderGrayCoder
提出日時 2019-06-29 20:07:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,664 KB
最終ジャッジ日時 2024-07-02 05:39:51
合計ジャッジ時間 3,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 74 ms
18,544 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 64 ms
18,368 KB
testcase_08 AC 69 ms
18,488 KB
testcase_09 AC 73 ms
18,536 KB
testcase_10 AC 66 ms
18,424 KB
testcase_11 AC 71 ms
18,552 KB
testcase_12 AC 72 ms
18,504 KB
testcase_13 AC 72 ms
18,596 KB
testcase_14 AC 71 ms
18,464 KB
testcase_15 AC 66 ms
18,396 KB
testcase_16 AC 66 ms
18,416 KB
testcase_17 WA -
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 43 ms
13,864 KB
testcase_21 AC 38 ms
12,160 KB
testcase_22 AC 55 ms
17,344 KB
testcase_23 AC 56 ms
17,096 KB
testcase_24 AC 44 ms
14,012 KB
testcase_25 AC 41 ms
12,492 KB
testcase_26 AC 74 ms
18,664 KB
testcase_27 AC 34 ms
11,520 KB
testcase_28 AC 72 ms
18,604 KB
testcase_29 AC 45 ms
13,912 KB
testcase_30 AC 73 ms
18,520 KB
testcase_31 AC 35 ms
11,520 KB
testcase_32 AC 32 ms
11,264 KB
testcase_33 AC 46 ms
14,320 KB
testcase_34 AC 55 ms
17,252 KB
testcase_35 AC 72 ms
18,536 KB
testcase_36 AC 39 ms
12,416 KB
testcase_37 AC 65 ms
18,240 KB
testcase_38 AC 59 ms
18,016 KB
testcase_39 AC 73 ms
18,616 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 WA -
testcase_42 AC 69 ms
18,456 KB
testcase_43 AC 71 ms
18,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from sys import stdin

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 main():
    N = int(input())

    primes = list(primes235(N))
    r2 = defaultdict(int)
    for i in primes:
        r2[i*i] = 1

    ans = 0
    for i in primes:
        if r2[2+i]:
            if i == 2:
                ans += 1
            else:
                ans += 2
    print(ans)

input = lambda: stdin.readline()
main()
0