結果

問題 No.843 Triple Primes
ユーザー yansi819yansi819
提出日時 2024-05-12 18:12:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 78,608 KB
最終ジャッジ日時 2024-12-20 09:12:16
合計ジャッジ時間 4,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(N):
    #N = 5 * (10 ** 5)
    res = []
    isprime = [True] * (N + 1)
    isprime[0] = isprime[1] = False
    for i in range(2, N + 1):
        if isprime[i]:
            res.append(i)
            for j in range(i * 2, N + 1, i):
                isprime[j] = False
    return res

N = int(input())
if N == 1:
    print(0)
    exit()
P = primes(N)
#print(len(P))
S = set([r * r for r in P])
ans = 0
for q in P:
    q2 = q + 2
    if q2 in S:
        ans += 1
print(ans * 2 - 1)
0