結果

問題 No.843 Triple Primes
ユーザー silopysilopy
提出日時 2019-07-07 00:25:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-09-19 14:20:46
合計ジャッジ時間 11,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 445 ms
14,720 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 354 ms
13,952 KB
testcase_08 AC 383 ms
14,208 KB
testcase_09 AC 436 ms
14,720 KB
testcase_10 AC 367 ms
14,080 KB
testcase_11 AC 404 ms
14,336 KB
testcase_12 AC 427 ms
14,592 KB
testcase_13 AC 419 ms
14,464 KB
testcase_14 AC 415 ms
14,592 KB
testcase_15 AC 370 ms
13,952 KB
testcase_16 AC 373 ms
13,952 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,880 KB
testcase_20 AC 126 ms
11,904 KB
testcase_21 AC 80 ms
11,392 KB
testcase_22 AC 247 ms
13,056 KB
testcase_23 AC 255 ms
13,056 KB
testcase_24 AC 133 ms
11,776 KB
testcase_25 AC 105 ms
11,648 KB
testcase_26 AC 436 ms
14,720 KB
testcase_27 AC 46 ms
11,008 KB
testcase_28 AC 417 ms
14,592 KB
testcase_29 AC 141 ms
12,032 KB
testcase_30 AC 482 ms
14,720 KB
testcase_31 AC 58 ms
11,264 KB
testcase_32 AC 44 ms
11,136 KB
testcase_33 AC 156 ms
12,160 KB
testcase_34 AC 225 ms
12,672 KB
testcase_35 AC 441 ms
14,592 KB
testcase_36 AC 97 ms
11,648 KB
testcase_37 AC 339 ms
13,696 KB
testcase_38 AC 289 ms
13,440 KB
testcase_39 AC 427 ms
14,592 KB
testcase_40 AC 29 ms
10,752 KB
testcase_41 AC 28 ms
10,880 KB
testcase_42 AC 382 ms
14,208 KB
testcase_43 AC 402 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isPrime(N):
	isp=[True for _ in range(N+1)]
	isp[0],isp[1]=False,False
	for i in range(2,N+1):
		if i*i>N:
			break
		for j in range(2,N+1):
			if i*j>N:
				break
			isp[i*j]=False
	return isp

def main():
	N=int(input())

	isp=isPrime(N)

	ans=0
	for r in range(2,N+1):
		if isp[r]==False:
			continue
		if r*r-2<=N and isp[r*r-2]==True:
			ans+=2
			if r==2:
				ans-=1
	
	print(ans)
	return

main()
0