結果

問題 No.843 Triple Primes
ユーザー NagisaNagisa
提出日時 2019-06-28 22:06:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-19 14:03:14
合計ジャッジ時間 11,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 443 ms
77,884 KB
testcase_02 AC 47 ms
62,080 KB
testcase_03 AC 46 ms
62,208 KB
testcase_04 AC 49 ms
63,104 KB
testcase_05 AC 47 ms
61,952 KB
testcase_06 AC 49 ms
62,848 KB
testcase_07 AC 350 ms
77,244 KB
testcase_08 AC 372 ms
77,952 KB
testcase_09 AC 430 ms
78,208 KB
testcase_10 AC 355 ms
77,296 KB
testcase_11 AC 411 ms
77,960 KB
testcase_12 AC 428 ms
77,568 KB
testcase_13 AC 406 ms
77,496 KB
testcase_14 AC 414 ms
77,696 KB
testcase_15 AC 345 ms
77,568 KB
testcase_16 AC 360 ms
77,440 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 36 ms
52,608 KB
testcase_19 AC 36 ms
52,480 KB
testcase_20 AC 117 ms
69,248 KB
testcase_21 AC 80 ms
65,984 KB
testcase_22 AC 229 ms
76,636 KB
testcase_23 AC 241 ms
76,800 KB
testcase_24 AC 119 ms
69,632 KB
testcase_25 AC 98 ms
67,584 KB
testcase_26 AC 443 ms
78,124 KB
testcase_27 AC 55 ms
63,232 KB
testcase_28 AC 412 ms
77,696 KB
testcase_29 AC 129 ms
70,016 KB
testcase_30 AC 437 ms
77,536 KB
testcase_31 AC 65 ms
64,512 KB
testcase_32 AC 55 ms
63,488 KB
testcase_33 AC 141 ms
71,040 KB
testcase_34 AC 213 ms
76,928 KB
testcase_35 AC 434 ms
77,988 KB
testcase_36 AC 91 ms
67,328 KB
testcase_37 AC 331 ms
77,184 KB
testcase_38 AC 274 ms
76,800 KB
testcase_39 AC 420 ms
77,952 KB
testcase_40 AC 36 ms
52,096 KB
testcase_41 AC 37 ms
51,840 KB
testcase_42 AC 363 ms
77,184 KB
testcase_43 AC 404 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N <= 1:
    print(0)
    exit(0)

import math
P = [2]
for k in range(3,N+1):
    f = 1
    for l in range(2,int(math.sqrt(k))+1):
        if k % l == 0:
            f = 0
            break
    if f==1:
        P.append(k)

P = sorted(P)
R = []
for e in P:
    if e*e <= N*2:
        R.append(e*e)
    else:
        break

l = len(P)
ans = 1
for k in range(1,l):
    if 2+P[k] in R:
        ans += 2
print(ans)
0