結果

問題 No.843 Triple Primes
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-10 22:29:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 111,080 KB
最終ジャッジ日時 2024-09-27 20:22:05
合計ジャッジ時間 8,275 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
97,280 KB
testcase_01 AC 159 ms
110,736 KB
testcase_02 AC 149 ms
100,304 KB
testcase_03 AC 140 ms
100,304 KB
testcase_04 AC 142 ms
101,000 KB
testcase_05 AC 137 ms
100,440 KB
testcase_06 AC 139 ms
100,428 KB
testcase_07 AC 155 ms
108,116 KB
testcase_08 AC 157 ms
109,388 KB
testcase_09 AC 157 ms
111,080 KB
testcase_10 AC 153 ms
108,308 KB
testcase_11 AC 155 ms
109,396 KB
testcase_12 AC 157 ms
110,804 KB
testcase_13 AC 156 ms
109,488 KB
testcase_14 AC 159 ms
109,392 KB
testcase_15 AC 154 ms
108,200 KB
testcase_16 AC 151 ms
108,200 KB
testcase_17 AC 118 ms
97,620 KB
testcase_18 AC 120 ms
97,684 KB
testcase_19 AC 124 ms
97,860 KB
testcase_20 AC 152 ms
102,124 KB
testcase_21 AC 147 ms
100,920 KB
testcase_22 AC 149 ms
105,776 KB
testcase_23 AC 148 ms
106,484 KB
testcase_24 AC 144 ms
102,416 KB
testcase_25 AC 140 ms
101,384 KB
testcase_26 AC 163 ms
111,048 KB
testcase_27 AC 142 ms
100,296 KB
testcase_28 AC 158 ms
109,460 KB
testcase_29 AC 145 ms
102,644 KB
testcase_30 AC 157 ms
110,736 KB
testcase_31 AC 146 ms
100,496 KB
testcase_32 AC 146 ms
100,296 KB
testcase_33 AC 144 ms
102,420 KB
testcase_34 AC 145 ms
105,096 KB
testcase_35 AC 153 ms
110,752 KB
testcase_36 AC 141 ms
100,904 KB
testcase_37 AC 151 ms
108,160 KB
testcase_38 AC 154 ms
106,076 KB
testcase_39 AC 156 ms
110,616 KB
testcase_40 AC 130 ms
97,408 KB
testcase_41 AC 127 ms
97,608 KB
testcase_42 AC 157 ms
109,272 KB
testcase_43 AC 162 ms
109,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


class prime_factorize():
    
    def __init__(self,M=10**6):
        self.sieve = [-1]*(M+1)
        self.sieve[1] = 1
        self.p = [False]*(M+1)
        self.mu = [1]*(M+1)
        
        for i in range(2,M+1):
            if self.sieve[i] == -1:
                self.p[i] = True
                
                i2 = i**2
                for j in range(i2,M+1,i2):
                    
                    self.mu[j] = 0
                
                
                for j in range(i,M+1,i):
                    self.sieve[j] = i
                    
                    self.mu[j] *= -1
                    
    def factors(self,x):
        tmp = []
        while self.sieve[x] != x:
            tmp.append(self.sieve[x])
            x //= self.sieve[x]
        tmp.append(self.sieve[x])
        return tmp
        
    def is_prime(self,x):
        return self.p[x]
        
    def mobius(self,x):
        return self.mu[x]

N = int(input())
pf = prime_factorize()
ans = 0
S = set()
P = set()
for i in range(2,N+1):
    if pf.is_prime(i):
        P.add(i)
        S.add(i**2)

if N==1:
    print(0)
    exit()
p = 2
for q in P:
    if (q+2) in S:
        ans += 1
print(ans*2 - 1)
0