結果

問題 No.843 Triple Primes
ユーザー convexineqconvexineq
提出日時 2019-06-28 21:31:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,572 KB
最終ジャッジ日時 2024-09-19 13:49:43
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 180 ms
20,456 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 162 ms
18,828 KB
testcase_08 AC 171 ms
19,012 KB
testcase_09 AC 189 ms
20,316 KB
testcase_10 AC 157 ms
18,780 KB
testcase_11 AC 181 ms
20,124 KB
testcase_12 AC 183 ms
20,384 KB
testcase_13 AC 177 ms
20,328 KB
testcase_14 AC 176 ms
20,200 KB
testcase_15 AC 152 ms
18,860 KB
testcase_16 AC 160 ms
18,884 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 68 ms
13,320 KB
testcase_21 AC 50 ms
12,344 KB
testcase_22 AC 114 ms
16,804 KB
testcase_23 AC 119 ms
16,988 KB
testcase_24 AC 69 ms
13,340 KB
testcase_25 AC 57 ms
12,716 KB
testcase_26 AC 183 ms
20,308 KB
testcase_27 AC 35 ms
11,008 KB
testcase_28 AC 186 ms
20,220 KB
testcase_29 AC 73 ms
13,504 KB
testcase_30 AC 180 ms
20,532 KB
testcase_31 AC 40 ms
11,472 KB
testcase_32 AC 35 ms
11,124 KB
testcase_33 AC 74 ms
13,604 KB
testcase_34 AC 103 ms
16,388 KB
testcase_35 AC 180 ms
20,572 KB
testcase_36 AC 55 ms
12,676 KB
testcase_37 AC 144 ms
18,492 KB
testcase_38 AC 125 ms
18,068 KB
testcase_39 AC 176 ms
20,368 KB
testcase_40 AC 27 ms
10,624 KB
testcase_41 AC 26 ms
10,752 KB
testcase_42 AC 158 ms
19,080 KB
testcase_43 AC 166 ms
20,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

n=int(input())
if n==1: print(0); exit()



def Eratosthenes(N):
    N+=1
    is_prime_list = [True]*N
    is_prime_list[0], is_prime_list[1] = False, False
    for j in range(4,N,2): is_prime_list[j] = False
    m = min(int(N**0.5)+10,N)
    for i in range(3,m,2):
        if is_prime_list[i]:
            for j in range(i*i,N,i):
                is_prime_list[j] = False
    return [number for number, TF in enumerate(is_prime_list) if TF]

heiho = {i*i for i in Eratosthenes(n)}

ans = 0
for i in Eratosthenes(n+1):
    if i+2 in heiho:
        ans += 1
#        print(i)

print(ans*2-1)
0