結果

問題 No.843 Triple Primes
ユーザー kuuso1kuuso1
提出日時 2019-06-28 21:59:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-09-19 14:01:30
合計ジャッジ時間 8,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from sys import exit
##  input functions for me
def ria(sep = ''):
    if sep == '' :
        return list(map(int, input().split())) 
    else: return list(map(int, input().split(sep)))
def rsa(sep = ''):
    if sep == '' :
        return input().split() 
    else: return input().split(sep)
def ri(): return int(input())
def rd(): return float(input())
def rs(): return input()
##

## main ##

N = ri()
isPrime = [True] * (N + 1)
isPrime[0] = False
isPrime[1] = False
P = []
for i in range(2,N+1):
    if not isPrime[i]: continue
    P.append(i)
    for j in range(i + i, N + 1, i): isPrime[j] = False

ans = 0
if N == 1:
    print(0)
    exit(0)

for r in P:
    p = 2
    q = r * r - p
    if q >= 0 and q <= N and isPrime[q]: ans += 2

ans -= 1
print (ans)


    

0