結果

問題 No.843 Triple Primes
ユーザー bellangeldindonbellangeldindon
提出日時 2019-06-28 22:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 199,936 KB
最終ジャッジ日時 2024-09-19 14:08:18
合計ジャッジ時間 10,137 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 363 ms
199,936 KB
testcase_02 AC 49 ms
61,952 KB
testcase_03 AC 43 ms
61,184 KB
testcase_04 AC 44 ms
63,360 KB
testcase_05 AC 43 ms
61,568 KB
testcase_06 AC 44 ms
63,616 KB
testcase_07 AC 281 ms
172,160 KB
testcase_08 AC 314 ms
181,888 KB
testcase_09 AC 394 ms
199,552 KB
testcase_10 AC 303 ms
173,440 KB
testcase_11 AC 337 ms
187,136 KB
testcase_12 AC 358 ms
195,328 KB
testcase_13 AC 347 ms
188,928 KB
testcase_14 AC 346 ms
189,184 KB
testcase_15 AC 291 ms
172,928 KB
testcase_16 AC 298 ms
173,184 KB
testcase_17 AC 36 ms
51,584 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 100 ms
98,428 KB
testcase_21 AC 71 ms
82,432 KB
testcase_22 AC 189 ms
138,368 KB
testcase_23 AC 197 ms
139,392 KB
testcase_24 AC 106 ms
99,800 KB
testcase_25 AC 92 ms
91,392 KB
testcase_26 AC 372 ms
199,040 KB
testcase_27 AC 51 ms
73,984 KB
testcase_28 AC 356 ms
194,176 KB
testcase_29 AC 112 ms
102,656 KB
testcase_30 AC 364 ms
195,456 KB
testcase_31 AC 61 ms
78,244 KB
testcase_32 AC 50 ms
71,296 KB
testcase_33 AC 121 ms
107,648 KB
testcase_34 AC 176 ms
130,432 KB
testcase_35 AC 373 ms
198,912 KB
testcase_36 AC 83 ms
87,680 KB
testcase_37 AC 280 ms
167,548 KB
testcase_38 AC 227 ms
149,504 KB
testcase_39 AC 361 ms
195,072 KB
testcase_40 AC 35 ms
51,968 KB
testcase_41 AC 37 ms
52,352 KB
testcase_42 AC 312 ms
180,032 KB
testcase_43 AC 338 ms
186,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
if N == 1: print(0)
else:
	prime = []
	numberlist = []
	for i in range(2, N+1):
		numberlist.append(i)
	while numberlist[0] <= int(math.sqrt(N)):
		now = numberlist.pop(0)
		prime.append(now)
		newnumberlist = []
		for i in range(0, len(numberlist)):
			if numberlist[i]%now != 0:
				newnumberlist.append(numberlist[i])
		numberlist = newnumberlist
	prime = prime + numberlist
	sqprime = []
	for i in range(0, len(prime)):
		if prime[i]*prime[i] > 2*prime[-1]: break
		sqprime.append(prime[i]*prime[i])
	cnt = 0
	for i in range(0, len(sqprime)):
		if sqprime[i]-2 in prime:
			if i == 0: cnt += 1
			else: cnt += 2
	print(cnt)
0