結果

問題 No.843 Triple Primes
ユーザー syunsukesyunsuke
提出日時 2019-08-29 17:53:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,180 KB
最終ジャッジ日時 2024-11-17 16:57:19
合計ジャッジ時間 13,957 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 716 ms
17,160 KB
testcase_02 AC 35 ms
10,624 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 37 ms
10,624 KB
testcase_05 AC 33 ms
10,496 KB
testcase_06 AC 37 ms
10,752 KB
testcase_07 AC 447 ms
16,240 KB
testcase_08 AC 471 ms
16,532 KB
testcase_09 AC 538 ms
17,144 KB
testcase_10 AC 452 ms
16,360 KB
testcase_11 AC 498 ms
16,584 KB
testcase_12 AC 517 ms
17,180 KB
testcase_13 AC 507 ms
16,944 KB
testcase_14 AC 517 ms
16,828 KB
testcase_15 AC 438 ms
16,420 KB
testcase_16 AC 441 ms
16,336 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 29 ms
10,496 KB
testcase_19 AC 29 ms
10,496 KB
testcase_20 AC 166 ms
12,668 KB
testcase_21 AC 99 ms
11,904 KB
testcase_22 AC 311 ms
15,392 KB
testcase_23 AC 320 ms
15,356 KB
testcase_24 AC 172 ms
13,056 KB
testcase_25 AC 141 ms
11,904 KB
testcase_26 AC 534 ms
17,132 KB
testcase_27 AC 55 ms
11,008 KB
testcase_28 AC 539 ms
16,860 KB
testcase_29 AC 188 ms
12,928 KB
testcase_30 AC 527 ms
17,072 KB
testcase_31 AC 69 ms
11,392 KB
testcase_32 AC 51 ms
10,880 KB
testcase_33 AC 194 ms
13,056 KB
testcase_34 AC 295 ms
14,960 KB
testcase_35 AC 535 ms
17,016 KB
testcase_36 AC 125 ms
11,776 KB
testcase_37 AC 417 ms
16,120 KB
testcase_38 AC 355 ms
15,764 KB
testcase_39 AC 527 ms
17,016 KB
testcase_40 AC 29 ms
10,624 KB
testcase_41 AC 28 ms
10,624 KB
testcase_42 AC 465 ms
16,436 KB
testcase_43 AC 512 ms
16,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

n=[1 for i in range(N+1)]
n[0]=0
n[1]=0

for i in range(2,N):
    if n[i]==1:
        for j in range(2,N):
            if i*j>N:
                break
            else:
                n[i*j]=0
#print(n)
S=dict()
for i in range(3,N+1):
    if n[i]==1:
        S[i]=i
#print(S)

ans=1
for i in S.keys():
    if S[i]**2-2 in S:
        ans+=2
if N==1:
    print(0)
else:
    print(ans)
0