結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 613 ms
22,400 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 457 ms
19,968 KB
testcase_08 AC 534 ms
21,120 KB
testcase_09 AC 621 ms
22,272 KB
testcase_10 AC 482 ms
20,352 KB
testcase_11 AC 550 ms
21,504 KB
testcase_12 AC 592 ms
22,016 KB
testcase_13 AC 572 ms
21,632 KB
testcase_14 AC 585 ms
21,760 KB
testcase_15 AC 468 ms
20,352 KB
testcase_16 AC 498 ms
20,352 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 126 ms
13,824 KB
testcase_21 AC 72 ms
12,416 KB
testcase_22 AC 295 ms
17,024 KB
testcase_23 AC 302 ms
17,408 KB
testcase_24 AC 135 ms
13,952 KB
testcase_25 AC 101 ms
13,056 KB
testcase_26 AC 604 ms
22,272 KB
testcase_27 AC 42 ms
11,264 KB
testcase_28 AC 579 ms
21,888 KB
testcase_29 AC 146 ms
14,080 KB
testcase_30 AC 605 ms
22,144 KB
testcase_31 AC 53 ms
11,776 KB
testcase_32 AC 39 ms
11,008 KB
testcase_33 AC 162 ms
14,464 KB
testcase_34 AC 264 ms
16,640 KB
testcase_35 AC 610 ms
22,400 KB
testcase_36 AC 92 ms
12,800 KB
testcase_37 AC 444 ms
19,584 KB
testcase_38 AC 348 ms
18,176 KB
testcase_39 AC 586 ms
21,888 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
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