結果

問題 No.843 Triple Primes
ユーザー H20H20
提出日時 2021-01-07 10:37:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-11-08 00:13:18
合計ジャッジ時間 6,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 151 ms
89,856 KB
testcase_02 AC 50 ms
61,312 KB
testcase_03 AC 51 ms
61,184 KB
testcase_04 AC 51 ms
61,056 KB
testcase_05 AC 54 ms
60,928 KB
testcase_06 AC 51 ms
61,440 KB
testcase_07 AC 125 ms
84,608 KB
testcase_08 AC 134 ms
87,040 KB
testcase_09 AC 153 ms
90,368 KB
testcase_10 AC 129 ms
86,528 KB
testcase_11 AC 141 ms
89,344 KB
testcase_12 AC 148 ms
89,600 KB
testcase_13 AC 143 ms
89,344 KB
testcase_14 AC 145 ms
89,728 KB
testcase_15 AC 128 ms
86,144 KB
testcase_16 AC 133 ms
86,528 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 WA -
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 72 ms
69,504 KB
testcase_21 AC 62 ms
65,152 KB
testcase_22 AC 99 ms
78,592 KB
testcase_23 AC 101 ms
78,848 KB
testcase_24 AC 73 ms
69,120 KB
testcase_25 AC 66 ms
67,200 KB
testcase_26 AC 150 ms
89,728 KB
testcase_27 AC 54 ms
62,208 KB
testcase_28 AC 157 ms
89,856 KB
testcase_29 AC 76 ms
70,016 KB
testcase_30 AC 151 ms
90,112 KB
testcase_31 AC 57 ms
63,488 KB
testcase_32 AC 52 ms
62,208 KB
testcase_33 AC 78 ms
71,168 KB
testcase_34 AC 114 ms
76,032 KB
testcase_35 AC 151 ms
90,368 KB
testcase_36 AC 65 ms
66,816 KB
testcase_37 AC 124 ms
83,840 KB
testcase_38 AC 110 ms
81,152 KB
testcase_39 AC 147 ms
89,856 KB
testcase_40 WA -
testcase_41 AC 37 ms
51,840 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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 p <=N and t[j]<=N:
            ans+=1
        if t[j]>=p:
            break
print(ans)
0