結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 646 ms
22,272 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 466 ms
20,096 KB
testcase_08 AC 539 ms
20,864 KB
testcase_09 AC 627 ms
22,528 KB
testcase_10 AC 493 ms
20,480 KB
testcase_11 AC 563 ms
21,632 KB
testcase_12 AC 610 ms
22,016 KB
testcase_13 AC 590 ms
21,760 KB
testcase_14 AC 601 ms
21,760 KB
testcase_15 AC 476 ms
20,224 KB
testcase_16 AC 527 ms
20,480 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 127 ms
13,696 KB
testcase_21 AC 75 ms
12,416 KB
testcase_22 AC 293 ms
17,024 KB
testcase_23 AC 304 ms
17,280 KB
testcase_24 AC 135 ms
13,952 KB
testcase_25 AC 104 ms
13,056 KB
testcase_26 AC 625 ms
22,400 KB
testcase_27 AC 43 ms
11,264 KB
testcase_28 AC 613 ms
21,760 KB
testcase_29 AC 146 ms
14,080 KB
testcase_30 AC 630 ms
22,272 KB
testcase_31 AC 53 ms
11,648 KB
testcase_32 AC 42 ms
11,264 KB
testcase_33 AC 165 ms
14,720 KB
testcase_34 AC 265 ms
16,640 KB
testcase_35 AC 621 ms
22,272 KB
testcase_36 AC 94 ms
13,056 KB
testcase_37 AC 459 ms
19,584 KB
testcase_38 AC 350 ms
18,304 KB
testcase_39 AC 600 ms
21,888 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N<3:	print(N-1);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