結果

問題 No.843 Triple Primes
ユーザー _matumo__matumo_
提出日時 2021-01-17 23:20:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-05-07 12:40:26
合計ジャッジ時間 13,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 576 ms
22,272 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 430 ms
19,968 KB
testcase_08 AC 502 ms
21,120 KB
testcase_09 AC 551 ms
22,400 KB
testcase_10 AC 438 ms
20,352 KB
testcase_11 AC 504 ms
21,376 KB
testcase_12 AC 548 ms
22,016 KB
testcase_13 AC 527 ms
21,888 KB
testcase_14 AC 523 ms
21,888 KB
testcase_15 AC 432 ms
20,352 KB
testcase_16 AC 455 ms
20,224 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 118 ms
13,696 KB
testcase_21 AC 71 ms
12,416 KB
testcase_22 AC 263 ms
17,280 KB
testcase_23 AC 277 ms
17,408 KB
testcase_24 AC 120 ms
14,208 KB
testcase_25 AC 94 ms
13,312 KB
testcase_26 AC 585 ms
22,400 KB
testcase_27 AC 39 ms
11,136 KB
testcase_28 AC 570 ms
22,016 KB
testcase_29 AC 139 ms
14,208 KB
testcase_30 AC 551 ms
22,272 KB
testcase_31 AC 46 ms
11,520 KB
testcase_32 AC 36 ms
11,264 KB
testcase_33 AC 150 ms
14,464 KB
testcase_34 AC 245 ms
16,512 KB
testcase_35 AC 550 ms
22,528 KB
testcase_36 AC 83 ms
13,056 KB
testcase_37 AC 420 ms
19,584 KB
testcase_38 AC 310 ms
18,176 KB
testcase_39 AC 527 ms
22,144 KB
testcase_40 AC 26 ms
10,496 KB
testcase_41 AC 25 ms
10,752 KB
testcase_42 AC 469 ms
20,736 KB
testcase_43 AC 520 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