結果

問題 No.843 Triple Primes
ユーザー _matumo__matumo_
提出日時 2021-01-17 16:42:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 217 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-05-07 06:00:03
合計ジャッジ時間 14,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 628 ms
22,400 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 461 ms
20,224 KB
testcase_08 AC 507 ms
20,992 KB
testcase_09 AC 630 ms
22,400 KB
testcase_10 AC 479 ms
20,352 KB
testcase_11 AC 534 ms
21,632 KB
testcase_12 AC 581 ms
22,016 KB
testcase_13 AC 546 ms
21,760 KB
testcase_14 AC 580 ms
21,760 KB
testcase_15 AC 460 ms
20,224 KB
testcase_16 AC 481 ms
20,608 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 120 ms
13,824 KB
testcase_21 AC 71 ms
12,288 KB
testcase_22 AC 275 ms
17,152 KB
testcase_23 AC 294 ms
17,408 KB
testcase_24 AC 130 ms
14,208 KB
testcase_25 AC 98 ms
13,312 KB
testcase_26 AC 594 ms
22,272 KB
testcase_27 AC 42 ms
11,264 KB
testcase_28 AC 579 ms
22,016 KB
testcase_29 AC 138 ms
14,208 KB
testcase_30 AC 588 ms
22,272 KB
testcase_31 AC 51 ms
11,776 KB
testcase_32 AC 38 ms
11,136 KB
testcase_33 AC 161 ms
14,720 KB
testcase_34 AC 258 ms
16,768 KB
testcase_35 AC 591 ms
22,528 KB
testcase_36 AC 87 ms
13,056 KB
testcase_37 AC 498 ms
19,840 KB
testcase_38 AC 339 ms
18,304 KB
testcase_39 AC 575 ms
22,016 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N<2:	print(0)
rn=int(N**0.5)+1
k,*pa=[n for n in range(3,N+1,2)]
pr=[]
while k<rn:
	pr+=[k]
	pa=[n for n in pa if n%k>0]
	k=pa[0]
pa=pr+pa
cn=0
for r in pr:
	if r*r-2 in pa:	cn+=1
cn=cn*2+1
print(cn)
0