結果

問題 No.843 Triple Primes
ユーザー kuuso1kuuso1
提出日時 2019-06-28 21:59:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 313 ms
16,256 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 261 ms
15,104 KB
testcase_08 AC 288 ms
15,744 KB
testcase_09 AC 327 ms
16,384 KB
testcase_10 AC 260 ms
15,360 KB
testcase_11 AC 311 ms
15,872 KB
testcase_12 AC 312 ms
16,128 KB
testcase_13 AC 306 ms
16,000 KB
testcase_14 AC 292 ms
16,000 KB
testcase_15 AC 263 ms
15,232 KB
testcase_16 AC 277 ms
15,488 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 100 ms
12,160 KB
testcase_21 AC 70 ms
11,648 KB
testcase_22 AC 174 ms
13,824 KB
testcase_23 AC 190 ms
13,952 KB
testcase_24 AC 98 ms
12,288 KB
testcase_25 AC 84 ms
11,904 KB
testcase_26 AC 307 ms
16,256 KB
testcase_27 AC 45 ms
11,008 KB
testcase_28 AC 326 ms
16,000 KB
testcase_29 AC 114 ms
12,416 KB
testcase_30 AC 290 ms
16,256 KB
testcase_31 AC 53 ms
11,264 KB
testcase_32 AC 43 ms
11,008 KB
testcase_33 AC 119 ms
12,800 KB
testcase_34 AC 172 ms
13,568 KB
testcase_35 AC 301 ms
16,256 KB
testcase_36 AC 77 ms
11,904 KB
testcase_37 AC 260 ms
15,104 KB
testcase_38 AC 203 ms
14,464 KB
testcase_39 AC 311 ms
16,256 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 AC 31 ms
10,624 KB
testcase_42 AC 266 ms
15,488 KB
testcase_43 AC 319 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

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