結果

問題 No.843 Triple Primes
ユーザー ssmkzkssmkzk
提出日時 2019-07-02 14:08:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-09-19 14:16:21
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 172 ms
30,848 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 AC 30 ms
11,136 KB
testcase_06 AC 32 ms
11,264 KB
testcase_07 AC 149 ms
27,008 KB
testcase_08 AC 156 ms
28,416 KB
testcase_09 AC 174 ms
30,720 KB
testcase_10 AC 149 ms
27,520 KB
testcase_11 AC 159 ms
29,184 KB
testcase_12 AC 174 ms
30,208 KB
testcase_13 AC 163 ms
29,952 KB
testcase_14 AC 164 ms
29,696 KB
testcase_15 AC 146 ms
27,136 KB
testcase_16 AC 155 ms
27,520 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 64 ms
16,256 KB
testcase_21 AC 48 ms
13,824 KB
testcase_22 AC 103 ms
22,016 KB
testcase_23 AC 108 ms
22,528 KB
testcase_24 AC 68 ms
16,640 KB
testcase_25 AC 58 ms
15,360 KB
testcase_26 AC 176 ms
30,720 KB
testcase_27 AC 37 ms
12,160 KB
testcase_28 AC 166 ms
29,952 KB
testcase_29 AC 69 ms
16,768 KB
testcase_30 AC 170 ms
30,336 KB
testcase_31 AC 41 ms
12,800 KB
testcase_32 AC 35 ms
11,776 KB
testcase_33 AC 74 ms
17,664 KB
testcase_34 AC 99 ms
21,120 KB
testcase_35 AC 176 ms
30,848 KB
testcase_36 AC 54 ms
14,592 KB
testcase_37 AC 140 ms
26,240 KB
testcase_38 AC 122 ms
24,064 KB
testcase_39 AC 170 ms
30,080 KB
testcase_40 AC 30 ms
10,880 KB
testcase_41 AC 29 ms
10,880 KB
testcase_42 AC 150 ms
27,904 KB
testcase_43 AC 161 ms
29,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import bisect

N = int(input())

def SoE(x):
    if x < 2:
        return []
    
    l = [i for i in range(x + 1)]
    l[1] = 0
    
    for i in l:
        if i > math.sqrt(x):
            break
        if i == 0:
            continue
        for j in range(2 * i , x + 1, i):
            l[j] = 0
    
    return [i for i in l if i != 0]

def index(a, x):
    'Locate the leftmost value exactly equal to x'
    i = bisect.bisect_left(a, x)
    if i != len(a) and a[i] == x:
        return 2
    else:
        return 0

prime = SoE(N)
ans = 0
for l_i in prime:
    a = pow(l_i,2) - 2
    ans += index(prime,a)
if N == 1:
    print(ans)
else:
    print(ans - 1)
0