結果

問題 No.843 Triple Primes
ユーザー GrayCoderGrayCoder
提出日時 2019-06-29 20:16:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,012 KB
最終ジャッジ日時 2024-09-19 14:14:32
合計ジャッジ時間 5,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 129 ms
21,996 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 108 ms
20,596 KB
testcase_08 AC 120 ms
20,968 KB
testcase_09 AC 130 ms
21,904 KB
testcase_10 AC 114 ms
20,604 KB
testcase_11 AC 122 ms
21,120 KB
testcase_12 AC 127 ms
21,916 KB
testcase_13 AC 131 ms
21,768 KB
testcase_14 AC 125 ms
21,780 KB
testcase_15 AC 112 ms
20,652 KB
testcase_16 AC 114 ms
20,500 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 55 ms
14,848 KB
testcase_21 AC 42 ms
12,800 KB
testcase_22 AC 85 ms
19,012 KB
testcase_23 AC 87 ms
19,212 KB
testcase_24 AC 58 ms
15,072 KB
testcase_25 AC 49 ms
13,376 KB
testcase_26 AC 129 ms
21,888 KB
testcase_27 AC 34 ms
11,648 KB
testcase_28 AC 126 ms
21,944 KB
testcase_29 AC 59 ms
14,928 KB
testcase_30 AC 127 ms
21,744 KB
testcase_31 AC 37 ms
12,032 KB
testcase_32 AC 33 ms
11,392 KB
testcase_33 AC 60 ms
15,048 KB
testcase_34 AC 81 ms
18,832 KB
testcase_35 AC 129 ms
22,012 KB
testcase_36 AC 46 ms
13,164 KB
testcase_37 AC 108 ms
20,412 KB
testcase_38 AC 94 ms
19,812 KB
testcase_39 AC 126 ms
21,744 KB
testcase_40 AC 28 ms
10,752 KB
testcase_41 AC 28 ms
10,624 KB
testcase_42 AC 118 ms
20,712 KB
testcase_43 AC 122 ms
21,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from sys import stdin

def erastosthenes(n):
    prime = [0, 1] * ((n + 1) // 2)
    if not n % 2:
        prime += [0]
    prime[1], prime[2] = 0, 1

    i = 3
    while i <= n ** 0.5:
        for j in range(i * i, n + 1, i):
            prime[j] = 0
        i += 2
    return prime

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

    if N < 2:
        print(0)
        return

    lst = erastosthenes(N)
    primes = [2] + [i for i in range(3, N + 1, 2) if lst[i]]
    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