結果
問題 | No.1657 Sum is Prime (Easy Version) |
ユーザー | shinichi |
提出日時 | 2021-08-27 21:37:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 778 ms / 2,000 ms |
コード長 | 1,903 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 123,520 KB |
最終ジャッジ日時 | 2024-11-21 01:13:45 |
合計ジャッジ時間 | 17,982 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 636 ms
121,148 KB |
testcase_01 | AC | 631 ms
121,288 KB |
testcase_02 | AC | 675 ms
123,456 KB |
testcase_03 | AC | 646 ms
120,936 KB |
testcase_04 | AC | 637 ms
121,348 KB |
testcase_05 | AC | 669 ms
121,080 KB |
testcase_06 | AC | 677 ms
123,248 KB |
testcase_07 | AC | 684 ms
122,932 KB |
testcase_08 | AC | 682 ms
122,964 KB |
testcase_09 | AC | 661 ms
123,520 KB |
testcase_10 | AC | 648 ms
123,196 KB |
testcase_11 | AC | 673 ms
123,432 KB |
testcase_12 | AC | 686 ms
123,452 KB |
testcase_13 | AC | 675 ms
123,156 KB |
testcase_14 | AC | 666 ms
123,052 KB |
testcase_15 | AC | 678 ms
123,460 KB |
testcase_16 | AC | 671 ms
123,132 KB |
testcase_17 | AC | 662 ms
123,200 KB |
testcase_18 | AC | 667 ms
123,312 KB |
testcase_19 | AC | 681 ms
123,432 KB |
testcase_20 | AC | 669 ms
123,188 KB |
testcase_21 | AC | 694 ms
123,316 KB |
testcase_22 | AC | 650 ms
121,024 KB |
testcase_23 | AC | 778 ms
123,132 KB |
ソースコード
from collections import defaultdict class Eratosthenes(): def __init__(self, size): self.size = size self.isprime = [True] * size self.minfactor = [-1] * size self.mobius = [1] * size self.isprime[1] = False self.minfactor[1] = 1 self.eratosthenes() # 初めに篩にかけて,minfactorとisprimeを生成 def eratosthenes(self): for p in range(2, self.size): if not self.isprime[p]: continue self.minfactor[p] = p self.mobius[p] = -1 for q in range(p+p, self.size, p): self.isprime[q] = False if self.minfactor[q] == -1: self.minfactor[q] = p if (q//p) % p == 0: self.mobius[q] = 0 else: self.mobius[q] = -self.mobius[q] # 高速素因数分解 def prime_factorize(self, number): assert 1 <= number <= self.size factors = defaultdict(int) while number != 1: factors[self.minfactor[number]] += 1 number //= self.minfactor[number] return factors # 高速約数列挙 def divisors(self, number): res = [1] factors = self.prime_factorize(number) for p, cnt in factors.items(): # 追加前の大きさを保存 res_size = len(res) for i in range(res_size): pp = 1 for j in range(cnt): pp *= p res.append(res[i]*pp) return res L, R = map(int, input().split()) er = Eratosthenes(2*10**6+10) ans = 0 for a in range(L, R+1): for b in range(a, a+2): if a != b and er.isprime[a+b]: ans += 1 elif a == b and er.isprime[a]: ans += 1 if er.isprime[2*R+1]: ans -= 1 print(ans)