結果

問題 No.843 Triple Primes
ユーザー kohei2019kohei2019
提出日時 2022-04-23 00:07:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 72,844 KB
最終ジャッジ日時 2024-06-24 05:42:07
合計ジャッジ時間 7,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,832 KB
testcase_01 AC 237 ms
72,844 KB
testcase_02 AC 48 ms
59,820 KB
testcase_03 AC 46 ms
60,020 KB
testcase_04 AC 49 ms
60,576 KB
testcase_05 AC 49 ms
59,848 KB
testcase_06 AC 47 ms
61,132 KB
testcase_07 AC 151 ms
70,448 KB
testcase_08 AC 177 ms
70,836 KB
testcase_09 AC 238 ms
72,772 KB
testcase_10 AC 168 ms
70,588 KB
testcase_11 AC 196 ms
71,860 KB
testcase_12 AC 229 ms
71,800 KB
testcase_13 AC 212 ms
70,872 KB
testcase_14 AC 209 ms
71,708 KB
testcase_15 AC 156 ms
71,504 KB
testcase_16 AC 159 ms
69,984 KB
testcase_17 AC 37 ms
52,312 KB
testcase_18 AC 37 ms
53,620 KB
testcase_19 AC 39 ms
53,680 KB
testcase_20 AC 62 ms
64,668 KB
testcase_21 AC 55 ms
63,368 KB
testcase_22 AC 96 ms
67,568 KB
testcase_23 AC 99 ms
68,108 KB
testcase_24 AC 66 ms
64,928 KB
testcase_25 AC 73 ms
64,208 KB
testcase_26 AC 232 ms
72,184 KB
testcase_27 AC 48 ms
61,232 KB
testcase_28 AC 211 ms
72,120 KB
testcase_29 AC 67 ms
65,548 KB
testcase_30 AC 229 ms
72,560 KB
testcase_31 AC 52 ms
62,220 KB
testcase_32 AC 51 ms
63,208 KB
testcase_33 AC 68 ms
65,560 KB
testcase_34 AC 87 ms
67,632 KB
testcase_35 AC 233 ms
72,040 KB
testcase_36 AC 64 ms
62,804 KB
testcase_37 AC 148 ms
69,964 KB
testcase_38 AC 111 ms
68,760 KB
testcase_39 AC 216 ms
72,212 KB
testcase_40 AC 39 ms
52,584 KB
testcase_41 AC 38 ms
52,192 KB
testcase_42 AC 169 ms
71,464 KB
testcase_43 AC 194 ms
70,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primeset(N): #N以下の素数をsetで求める.エラトステネスの篩O(√Nlog(N))
    lsx = [1]*(N+1)
    for i in range(2,int(-(-N**0.5//1))+1):
        if lsx[i] == 1:
            for j in range(i,N//i+1):
                lsx[j*i] = 0
    setprime = set()
    for i in range(2,N+1):
        if lsx[i] == 1:
            setprime.add(i)
    return setprime
    
N = int(input())
if N == 1:
    print(0)
    exit()
setp = primeset(N)
lsp = list(setp)
lsp.sort()
P =len(lsp)
maxp = lsp[-1]
cnt = 0
for k in range(P):
    if lsp[k] ** 2 > maxp*2:
        break
    for j in range(P):
        if (lsp[k]**2 - lsp[j]) in setp:
            cnt += 1
print(cnt)
0