結果

問題 No.843 Triple Primes
ユーザー ssmkzkssmkzk
提出日時 2019-07-02 14:07:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-07-21 16:00:55
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 185 ms
30,976 KB
testcase_02 AC 32 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 151 ms
26,880 KB
testcase_08 AC 165 ms
28,288 KB
testcase_09 AC 183 ms
30,848 KB
testcase_10 AC 150 ms
27,520 KB
testcase_11 AC 165 ms
29,312 KB
testcase_12 AC 174 ms
30,208 KB
testcase_13 AC 171 ms
29,824 KB
testcase_14 AC 174 ms
29,696 KB
testcase_15 AC 151 ms
27,264 KB
testcase_16 AC 151 ms
27,392 KB
testcase_17 WA -
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 65 ms
16,256 KB
testcase_21 AC 48 ms
13,824 KB
testcase_22 AC 110 ms
22,016 KB
testcase_23 AC 107 ms
22,528 KB
testcase_24 AC 68 ms
16,512 KB
testcase_25 AC 59 ms
15,232 KB
testcase_26 AC 177 ms
30,720 KB
testcase_27 AC 37 ms
12,032 KB
testcase_28 AC 174 ms
30,080 KB
testcase_29 AC 68 ms
16,896 KB
testcase_30 AC 181 ms
30,336 KB
testcase_31 AC 41 ms
12,672 KB
testcase_32 AC 36 ms
11,904 KB
testcase_33 AC 75 ms
17,664 KB
testcase_34 AC 101 ms
20,992 KB
testcase_35 AC 183 ms
30,848 KB
testcase_36 AC 54 ms
14,720 KB
testcase_37 AC 144 ms
26,240 KB
testcase_38 AC 126 ms
23,936 KB
testcase_39 AC 176 ms
30,208 KB
testcase_40 AC 30 ms
10,880 KB
testcase_41 WA -
testcase_42 AC 154 ms
27,904 KB
testcase_43 AC 173 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):
    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)

print(ans - 1)
0