結果

問題 No.843 Triple Primes
ユーザー NagisaNagisa
提出日時 2019-06-28 21:47:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-02 04:35:23
合計ジャッジ時間 12,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 479 ms
77,824 KB
testcase_02 AC 56 ms
61,568 KB
testcase_03 AC 55 ms
61,952 KB
testcase_04 AC 58 ms
62,208 KB
testcase_05 AC 55 ms
61,568 KB
testcase_06 AC 57 ms
62,208 KB
testcase_07 AC 370 ms
76,672 KB
testcase_08 AC 410 ms
77,440 KB
testcase_09 AC 475 ms
77,440 KB
testcase_10 AC 387 ms
76,928 KB
testcase_11 AC 431 ms
77,184 KB
testcase_12 AC 461 ms
77,568 KB
testcase_13 AC 449 ms
76,928 KB
testcase_14 AC 449 ms
77,184 KB
testcase_15 AC 378 ms
76,928 KB
testcase_16 AC 390 ms
76,672 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 126 ms
68,864 KB
testcase_21 AC 88 ms
65,664 KB
testcase_22 AC 248 ms
76,544 KB
testcase_23 AC 259 ms
76,544 KB
testcase_24 AC 133 ms
69,504 KB
testcase_25 AC 109 ms
67,456 KB
testcase_26 AC 473 ms
77,568 KB
testcase_27 AC 63 ms
63,104 KB
testcase_28 AC 453 ms
77,440 KB
testcase_29 AC 141 ms
69,760 KB
testcase_30 AC 467 ms
77,440 KB
testcase_31 AC 71 ms
64,256 KB
testcase_32 AC 62 ms
63,232 KB
testcase_33 AC 152 ms
70,784 KB
testcase_34 AC 228 ms
76,544 KB
testcase_35 AC 474 ms
77,312 KB
testcase_36 AC 102 ms
67,200 KB
testcase_37 AC 355 ms
77,056 KB
testcase_38 AC 293 ms
76,544 KB
testcase_39 AC 456 ms
77,184 KB
testcase_40 WA -
testcase_41 AC 41 ms
51,712 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N <= 3:
    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 = []
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