結果

問題 No.843 Triple Primes
ユーザー _matumo__matumo_
提出日時 2021-01-17 16:44:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 224 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-11-29 20:19:46
合計ジャッジ時間 14,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 632 ms
22,272 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 456 ms
19,968 KB
testcase_08 AC 520 ms
21,120 KB
testcase_09 AC 621 ms
22,272 KB
testcase_10 AC 548 ms
20,608 KB
testcase_11 AC 583 ms
21,376 KB
testcase_12 AC 606 ms
22,016 KB
testcase_13 AC 602 ms
21,632 KB
testcase_14 AC 572 ms
21,760 KB
testcase_15 AC 469 ms
20,096 KB
testcase_16 AC 476 ms
20,352 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 RE -
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 124 ms
13,824 KB
testcase_21 AC 72 ms
12,288 KB
testcase_22 AC 294 ms
17,024 KB
testcase_23 AC 302 ms
17,280 KB
testcase_24 AC 135 ms
14,080 KB
testcase_25 AC 106 ms
13,056 KB
testcase_26 AC 608 ms
22,400 KB
testcase_27 AC 42 ms
11,264 KB
testcase_28 AC 581 ms
21,888 KB
testcase_29 AC 145 ms
14,080 KB
testcase_30 AC 593 ms
22,016 KB
testcase_31 AC 52 ms
11,648 KB
testcase_32 AC 39 ms
11,136 KB
testcase_33 AC 163 ms
14,592 KB
testcase_34 AC 260 ms
16,512 KB
testcase_35 AC 625 ms
22,528 KB
testcase_36 AC 92 ms
12,928 KB
testcase_37 AC 468 ms
19,712 KB
testcase_38 AC 349 ms
18,304 KB
testcase_39 AC 620 ms
21,888 KB
testcase_40 RE -
testcase_41 AC 29 ms
10,624 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N<2:	print(0);exit()
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