結果

問題 No.843 Triple Primes
ユーザー hedwig100hedwig100
提出日時 2020-04-17 13:05:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-10-03 10:14:53
合計ジャッジ時間 11,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 500 ms
32,512 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 28 ms
11,264 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 29 ms
11,136 KB
testcase_07 AC 370 ms
28,032 KB
testcase_08 AC 426 ms
29,696 KB
testcase_09 AC 473 ms
32,256 KB
testcase_10 AC 393 ms
28,800 KB
testcase_11 AC 451 ms
30,592 KB
testcase_12 AC 479 ms
31,872 KB
testcase_13 AC 465 ms
31,232 KB
testcase_14 AC 460 ms
31,232 KB
testcase_15 AC 376 ms
28,288 KB
testcase_16 AC 379 ms
28,672 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 24 ms
10,752 KB
testcase_19 AC 24 ms
10,624 KB
testcase_20 AC 102 ms
16,512 KB
testcase_21 AC 64 ms
14,208 KB
testcase_22 AC 241 ms
22,784 KB
testcase_23 AC 252 ms
23,296 KB
testcase_24 AC 114 ms
16,896 KB
testcase_25 AC 91 ms
15,360 KB
testcase_26 AC 493 ms
32,128 KB
testcase_27 AC 37 ms
11,904 KB
testcase_28 AC 465 ms
31,616 KB
testcase_29 AC 121 ms
17,280 KB
testcase_30 AC 485 ms
31,872 KB
testcase_31 AC 44 ms
12,800 KB
testcase_32 AC 35 ms
12,032 KB
testcase_33 AC 132 ms
18,048 KB
testcase_34 AC 215 ms
21,760 KB
testcase_35 AC 479 ms
32,384 KB
testcase_36 AC 79 ms
14,848 KB
testcase_37 AC 355 ms
27,392 KB
testcase_38 AC 281 ms
24,704 KB
testcase_39 AC 466 ms
31,488 KB
testcase_40 AC 25 ms
10,752 KB
testcase_41 AC 25 ms
10,624 KB
testcase_42 AC 396 ms
29,184 KB
testcase_43 AC 433 ms
30,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 20
import sys
input = sys.stdin.readline
sys.setrecursionlimit(100000000)
from collections import defaultdict
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def sieve(n):
    prime = []
    limit = n ** 0.5
    data = [i + 1 for i in range(1,n)]
    while True:
        p = data[0]
        if limit <= p:
            return prime + data
        prime.append(p)
        data = [e for e in data if e%p != 0]

def is_prime(n):
    if n == 1:
        return False
    for i in range(2,n):
        if i * i > n:
            break
        if n%i == 0:
            return  False
    return True

def main():
    n = int(input())
    if n == 1:
        print(0)
        return

    primes = sieve(n)
    ans = 1
    for p in primes:
        if p == 2:
            continue
        if p * p - 2 <= n and is_prime(p * p - 2):
            #print(p * p - 2,2,p)
            ans += 2

    print(ans)

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