結果

問題 No.843 Triple Primes
ユーザー H20H20
提出日時 2021-01-07 10:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-11-08 00:35:11
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 166 ms
90,112 KB
testcase_02 AC 56 ms
61,056 KB
testcase_03 AC 55 ms
61,184 KB
testcase_04 AC 56 ms
61,312 KB
testcase_05 AC 54 ms
61,056 KB
testcase_06 AC 56 ms
61,568 KB
testcase_07 AC 134 ms
84,352 KB
testcase_08 AC 143 ms
86,784 KB
testcase_09 AC 162 ms
89,984 KB
testcase_10 AC 140 ms
86,400 KB
testcase_11 AC 155 ms
88,832 KB
testcase_12 AC 161 ms
89,600 KB
testcase_13 AC 158 ms
89,472 KB
testcase_14 AC 157 ms
89,216 KB
testcase_15 AC 137 ms
86,400 KB
testcase_16 AC 138 ms
86,016 KB
testcase_17 AC 42 ms
52,096 KB
testcase_18 AC 43 ms
52,352 KB
testcase_19 AC 42 ms
51,840 KB
testcase_20 AC 78 ms
69,120 KB
testcase_21 AC 65 ms
65,152 KB
testcase_22 AC 107 ms
78,976 KB
testcase_23 AC 109 ms
79,232 KB
testcase_24 AC 81 ms
69,376 KB
testcase_25 AC 73 ms
67,328 KB
testcase_26 AC 164 ms
90,112 KB
testcase_27 AC 59 ms
62,592 KB
testcase_28 AC 158 ms
89,472 KB
testcase_29 AC 83 ms
70,272 KB
testcase_30 AC 159 ms
89,600 KB
testcase_31 AC 64 ms
64,000 KB
testcase_32 AC 58 ms
62,592 KB
testcase_33 AC 88 ms
71,680 KB
testcase_34 AC 126 ms
75,904 KB
testcase_35 AC 163 ms
90,112 KB
testcase_36 AC 71 ms
66,816 KB
testcase_37 AC 131 ms
84,224 KB
testcase_38 AC 117 ms
81,280 KB
testcase_39 AC 157 ms
89,472 KB
testcase_40 AC 42 ms
51,968 KB
testcase_41 AC 42 ms
52,480 KB
testcase_42 AC 142 ms
86,528 KB
testcase_43 AC 154 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    is_prime = [True for _ in range(n+1)]
    is_prime[0] = False

    for i in range(2, n+1):
        if is_prime[i-1]:
            j = 2 * i
            while j <= n:
                is_prime[j-1] = False
                j += i
    table = [ i for i in range(1, n+1) if is_prime[i-1]]
    return is_prime, table

N = int(input())
_,t = sieve(2*N)
s=set(t)
ppow = []
lent = len(t)
i = 0
while  i<lent and t[i]**2<=2*N:
    ppow.append(t[i]**2)
    i+=1
ans = 0

for p in ppow:
    for j in range(lent):
        if p - t[j] in s and p - t[j]<=N and t[j]<=N:
            ans+=1
        if t[j]>=p:
            break
print(ans)
0