結果

問題 No.843 Triple Primes
ユーザー _matumo__matumo_
提出日時 2021-01-17 16:47:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-05-07 06:08:25
合計ジャッジ時間 15,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 688 ms
22,528 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 486 ms
20,096 KB
testcase_08 AC 616 ms
20,992 KB
testcase_09 AC 712 ms
22,272 KB
testcase_10 AC 513 ms
20,608 KB
testcase_11 AC 600 ms
21,632 KB
testcase_12 AC 633 ms
22,144 KB
testcase_13 AC 607 ms
21,888 KB
testcase_14 AC 617 ms
21,760 KB
testcase_15 AC 503 ms
20,224 KB
testcase_16 AC 500 ms
20,352 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 127 ms
13,696 KB
testcase_21 AC 75 ms
12,288 KB
testcase_22 AC 298 ms
17,152 KB
testcase_23 AC 306 ms
17,280 KB
testcase_24 AC 137 ms
14,080 KB
testcase_25 AC 106 ms
13,312 KB
testcase_26 AC 666 ms
22,400 KB
testcase_27 AC 43 ms
11,392 KB
testcase_28 AC 619 ms
22,016 KB
testcase_29 AC 153 ms
14,208 KB
testcase_30 AC 641 ms
22,272 KB
testcase_31 AC 53 ms
11,520 KB
testcase_32 AC 41 ms
11,136 KB
testcase_33 AC 165 ms
14,720 KB
testcase_34 AC 272 ms
16,512 KB
testcase_35 AC 644 ms
22,400 KB
testcase_36 AC 94 ms
12,928 KB
testcase_37 AC 478 ms
19,584 KB
testcase_38 AC 361 ms
18,176 KB
testcase_39 AC 620 ms
22,144 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