結果

問題 No.843 Triple Primes
ユーザー _matumo__matumo_
提出日時 2021-01-17 23:20:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-11-30 05:29:13
合計ジャッジ時間 14,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 577 ms
22,400 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 440 ms
20,224 KB
testcase_08 AC 483 ms
20,992 KB
testcase_09 AC 597 ms
22,528 KB
testcase_10 AC 466 ms
20,480 KB
testcase_11 AC 517 ms
21,632 KB
testcase_12 AC 569 ms
22,144 KB
testcase_13 AC 565 ms
21,888 KB
testcase_14 AC 538 ms
21,760 KB
testcase_15 AC 447 ms
20,352 KB
testcase_16 AC 457 ms
20,608 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 120 ms
13,952 KB
testcase_21 AC 68 ms
12,416 KB
testcase_22 AC 276 ms
17,280 KB
testcase_23 AC 278 ms
17,664 KB
testcase_24 AC 123 ms
14,080 KB
testcase_25 AC 96 ms
13,312 KB
testcase_26 AC 590 ms
22,528 KB
testcase_27 AC 39 ms
11,392 KB
testcase_28 AC 554 ms
21,888 KB
testcase_29 AC 141 ms
14,208 KB
testcase_30 AC 548 ms
22,400 KB
testcase_31 AC 52 ms
11,648 KB
testcase_32 AC 37 ms
11,264 KB
testcase_33 AC 151 ms
14,720 KB
testcase_34 AC 247 ms
16,640 KB
testcase_35 AC 568 ms
22,400 KB
testcase_36 AC 83 ms
12,928 KB
testcase_37 AC 408 ms
19,712 KB
testcase_38 AC 328 ms
18,304 KB
testcase_39 AC 562 ms
22,144 KB
testcase_40 AC 26 ms
10,752 KB
testcase_41 AC 26 ms
10,624 KB
testcase_42 AC 463 ms
20,736 KB
testcase_43 AC 617 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N<3:	print(N-1);exit()
rn=int(N**0.5)+2
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
print(cn*2+1)
0