結果

問題 No.843 Triple Primes
ユーザー stngstng
提出日時 2022-07-16 16:10:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,136 KB
最終ジャッジ日時 2024-06-28 15:41:51
合計ジャッジ時間 7,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 251 ms
75,136 KB
testcase_02 AC 54 ms
60,800 KB
testcase_03 AC 53 ms
60,544 KB
testcase_04 AC 56 ms
61,568 KB
testcase_05 AC 54 ms
60,672 KB
testcase_06 AC 56 ms
61,312 KB
testcase_07 AC 172 ms
71,936 KB
testcase_08 AC 196 ms
73,216 KB
testcase_09 AC 246 ms
74,752 KB
testcase_10 AC 180 ms
72,064 KB
testcase_11 AC 212 ms
73,600 KB
testcase_12 AC 236 ms
74,752 KB
testcase_13 AC 224 ms
73,472 KB
testcase_14 AC 222 ms
73,728 KB
testcase_15 AC 177 ms
72,192 KB
testcase_16 AC 180 ms
72,320 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 82 ms
65,152 KB
testcase_21 AC 76 ms
63,872 KB
testcase_22 AC 116 ms
69,248 KB
testcase_23 AC 121 ms
69,760 KB
testcase_24 AC 84 ms
65,664 KB
testcase_25 AC 99 ms
64,512 KB
testcase_26 AC 245 ms
74,624 KB
testcase_27 AC 62 ms
62,080 KB
testcase_28 AC 227 ms
73,728 KB
testcase_29 AC 87 ms
66,048 KB
testcase_30 AC 238 ms
75,008 KB
testcase_31 AC 65 ms
62,720 KB
testcase_32 AC 65 ms
62,080 KB
testcase_33 AC 89 ms
66,048 KB
testcase_34 AC 110 ms
68,864 KB
testcase_35 AC 246 ms
74,880 KB
testcase_36 AC 88 ms
63,872 KB
testcase_37 AC 161 ms
72,192 KB
testcase_38 AC 132 ms
70,144 KB
testcase_39 AC 229 ms
74,496 KB
testcase_40 AC 40 ms
52,352 KB
testcase_41 AC 40 ms
51,968 KB
testcase_42 AC 190 ms
72,960 KB
testcase_43 AC 212 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def sieve_of_eratosthenes(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime

n = int(input())
prm = sieve_of_eratosthenes(n)
pri = []
pset = set()
for i in range(n+1):
    if prm[i] == True:
        pri.append(i)
        pset.add(i)

ans = 0

for i in range(len(pri)):
    r2 = pri[len(pri)-1-i]**2
    if r2 > 10**6:
        continue
    for j in range(len(pri)):
        if r2-pri[j] in pset:
            ans += 1

print(ans)
0