結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー mesame3993mesame3993
提出日時 2021-09-16 07:05:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 477 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 431,044 KB
最終ジャッジ日時 2024-06-29 12:53:24
合計ジャッジ時間 4,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,344 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def prime_number(n):
	# n >= 2
	prime = []
	limit = math.sqrt(n)
	data = [i + 1 for i in range(1, n)]
	while True:
		p = data[0]
		if limit <= p:
			return prime + data
		prime.append(p)
		data = [e for e in data if e % p != 0]

l, r = map(int, input().split())
if r*(r+1) - l*(l-1) // 2 <= 1:
	p = set()
else:
	p = set(prime_number(r*(r+1) // 2))
	
ans = 0
for i in range(l, r+1):
	tmp = 0
	for j in range(i, r+1):
		tmp += j
		if tmp in p:
			ans += 1
print(ans)
0