結果

問題 No.843 Triple Primes
ユーザー kozykozy
提出日時 2020-07-22 16:43:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 842 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-06-12 04:37:44
合計ジャッジ時間 17,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 719 ms
32,364 KB
testcase_02 AC 34 ms
11,008 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 36 ms
11,136 KB
testcase_05 AC 34 ms
11,008 KB
testcase_06 AC 36 ms
11,136 KB
testcase_07 AC 534 ms
28,160 KB
testcase_08 AC 615 ms
29,696 KB
testcase_09 AC 710 ms
32,384 KB
testcase_10 AC 552 ms
28,928 KB
testcase_11 AC 622 ms
30,692 KB
testcase_12 AC 682 ms
31,992 KB
testcase_13 AC 842 ms
31,232 KB
testcase_14 AC 686 ms
31,104 KB
testcase_15 AC 544 ms
28,416 KB
testcase_16 AC 559 ms
28,672 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 150 ms
16,768 KB
testcase_21 AC 87 ms
13,952 KB
testcase_22 AC 338 ms
22,784 KB
testcase_23 AC 366 ms
23,296 KB
testcase_24 AC 154 ms
17,024 KB
testcase_25 AC 120 ms
15,488 KB
testcase_26 AC 736 ms
32,256 KB
testcase_27 AC 48 ms
11,904 KB
testcase_28 AC 706 ms
31,480 KB
testcase_29 AC 170 ms
17,408 KB
testcase_30 AC 708 ms
32,000 KB
testcase_31 AC 59 ms
12,672 KB
testcase_32 AC 46 ms
11,776 KB
testcase_33 AC 185 ms
18,048 KB
testcase_34 AC 308 ms
21,760 KB
testcase_35 AC 712 ms
32,384 KB
testcase_36 AC 107 ms
14,976 KB
testcase_37 AC 526 ms
27,392 KB
testcase_38 AC 417 ms
24,704 KB
testcase_39 AC 690 ms
31,744 KB
testcase_40 AC 29 ms
10,880 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 590 ms
29,056 KB
testcase_43 AC 678 ms
30,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
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())
if N==1:
  print(0)
  sys.exit()
if N==2:
  print(1)
  sys.exit()
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