結果

問題 No.843 Triple Primes
ユーザー NagisaNagisa
提出日時 2019-06-28 21:51:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,828 KB
最終ジャッジ日時 2024-07-02 04:40:38
合計ジャッジ時間 12,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,340 KB
testcase_01 AC 499 ms
77,828 KB
testcase_02 AC 51 ms
62,036 KB
testcase_03 AC 51 ms
62,004 KB
testcase_04 AC 54 ms
63,192 KB
testcase_05 AC 51 ms
63,116 KB
testcase_06 AC 53 ms
63,428 KB
testcase_07 AC 365 ms
76,752 KB
testcase_08 AC 407 ms
77,136 KB
testcase_09 AC 473 ms
77,652 KB
testcase_10 AC 379 ms
76,796 KB
testcase_11 AC 429 ms
77,264 KB
testcase_12 AC 458 ms
77,432 KB
testcase_13 AC 442 ms
77,084 KB
testcase_14 AC 444 ms
77,212 KB
testcase_15 AC 371 ms
76,940 KB
testcase_16 AC 379 ms
76,976 KB
testcase_17 AC 41 ms
52,364 KB
testcase_18 AC 39 ms
53,540 KB
testcase_19 AC 40 ms
52,116 KB
testcase_20 AC 121 ms
69,036 KB
testcase_21 AC 82 ms
66,140 KB
testcase_22 WA -
testcase_23 AC 250 ms
76,744 KB
testcase_24 AC 129 ms
70,852 KB
testcase_25 AC 103 ms
68,396 KB
testcase_26 AC 468 ms
77,520 KB
testcase_27 AC 60 ms
63,848 KB
testcase_28 AC 450 ms
77,232 KB
testcase_29 AC 133 ms
70,768 KB
testcase_30 AC 455 ms
77,084 KB
testcase_31 AC 67 ms
64,704 KB
testcase_32 AC 58 ms
64,492 KB
testcase_33 AC 144 ms
71,016 KB
testcase_34 AC 219 ms
76,440 KB
testcase_35 AC 468 ms
77,392 KB
testcase_36 AC 96 ms
68,104 KB
testcase_37 AC 346 ms
76,940 KB
testcase_38 AC 284 ms
76,700 KB
testcase_39 AC 460 ms
77,536 KB
testcase_40 AC 39 ms
52,944 KB
testcase_41 AC 39 ms
53,656 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

R = []
if N in P:
    R.append(N)
for e in P:
    if e*e <= N:
        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