結果

問題 No.843 Triple Primes
ユーザー kohei2019kohei2019
提出日時 2022-04-23 00:06:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 630 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 72,684 KB
最終ジャッジ日時 2024-06-24 05:41:11
合計ジャッジ時間 7,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,036 KB
testcase_01 AC 233 ms
71,700 KB
testcase_02 AC 44 ms
60,576 KB
testcase_03 AC 45 ms
60,128 KB
testcase_04 AC 47 ms
61,192 KB
testcase_05 AC 45 ms
60,224 KB
testcase_06 AC 47 ms
60,308 KB
testcase_07 AC 151 ms
70,580 KB
testcase_08 AC 177 ms
70,592 KB
testcase_09 AC 232 ms
72,320 KB
testcase_10 AC 161 ms
70,688 KB
testcase_11 AC 196 ms
70,612 KB
testcase_12 AC 223 ms
72,684 KB
testcase_13 AC 207 ms
71,796 KB
testcase_14 AC 206 ms
70,904 KB
testcase_15 AC 155 ms
70,420 KB
testcase_16 AC 158 ms
71,056 KB
testcase_17 RE -
testcase_18 AC 38 ms
52,720 KB
testcase_19 AC 39 ms
52,596 KB
testcase_20 AC 63 ms
64,996 KB
testcase_21 AC 56 ms
62,644 KB
testcase_22 AC 94 ms
67,072 KB
testcase_23 AC 97 ms
67,320 KB
testcase_24 AC 63 ms
64,500 KB
testcase_25 AC 70 ms
63,520 KB
testcase_26 AC 229 ms
71,368 KB
testcase_27 AC 49 ms
60,940 KB
testcase_28 AC 212 ms
71,152 KB
testcase_29 AC 65 ms
65,580 KB
testcase_30 AC 224 ms
72,288 KB
testcase_31 AC 50 ms
62,112 KB
testcase_32 AC 51 ms
61,944 KB
testcase_33 AC 69 ms
65,528 KB
testcase_34 AC 87 ms
66,964 KB
testcase_35 AC 232 ms
71,572 KB
testcase_36 AC 64 ms
62,732 KB
testcase_37 AC 141 ms
69,640 KB
testcase_38 AC 110 ms
68,192 KB
testcase_39 AC 223 ms
71,620 KB
testcase_40 AC 38 ms
53,000 KB
testcase_41 RE -
testcase_42 AC 167 ms
70,960 KB
testcase_43 AC 194 ms
71,484 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())
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