結果

問題 No.843 Triple Primes
ユーザー kozykozy
提出日時 2020-07-22 16:40:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 491 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,420 KB
最終ジャッジ日時 2024-06-12 04:22:11
合計ジャッジ時間 17,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 729 ms
32,420 KB
testcase_02 AC 34 ms
11,136 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 37 ms
11,136 KB
testcase_07 AC 524 ms
28,168 KB
testcase_08 AC 583 ms
29,512 KB
testcase_09 AC 718 ms
32,264 KB
testcase_10 AC 557 ms
28,764 KB
testcase_11 AC 643 ms
30,592 KB
testcase_12 AC 696 ms
31,736 KB
testcase_13 AC 679 ms
31,360 KB
testcase_14 AC 674 ms
31,120 KB
testcase_15 AC 561 ms
28,276 KB
testcase_16 AC 553 ms
28,752 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 32 ms
10,624 KB
testcase_20 AC 147 ms
16,768 KB
testcase_21 AC 85 ms
13,952 KB
testcase_22 AC 332 ms
22,656 KB
testcase_23 AC 347 ms
23,168 KB
testcase_24 AC 155 ms
17,024 KB
testcase_25 AC 120 ms
15,360 KB
testcase_26 AC 766 ms
32,056 KB
testcase_27 AC 49 ms
11,904 KB
testcase_28 AC 706 ms
31,288 KB
testcase_29 AC 165 ms
17,408 KB
testcase_30 AC 693 ms
31,744 KB
testcase_31 AC 60 ms
12,672 KB
testcase_32 AC 46 ms
11,648 KB
testcase_33 AC 185 ms
17,920 KB
testcase_34 AC 300 ms
21,760 KB
testcase_35 AC 745 ms
32,076 KB
testcase_36 AC 107 ms
14,848 KB
testcase_37 AC 519 ms
27,392 KB
testcase_38 AC 413 ms
24,748 KB
testcase_39 AC 714 ms
31,568 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 609 ms
29,160 KB
testcase_43 AC 639 ms
30,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve_of_eratosthenes(n):
    candidate = list(range(2, n+1))
    prime = []
    limit = n**0.5 + 1
    while True:
        p = candidate[0] 
        if limit <= p:
            prime.extend(candidate)
            break
        prime.append(p)
        candidate = [i for i in candidate if i % p != 0]
    return prime
N=int(input())
prime = sieve_of_eratosthenes(N)
s=0
prime2=[i for i in prime if i<=800]
for i in range(len(prime2)):
  if (prime2[i]**2)-2 in prime:
    s+=1
print(s*2-1)
0