結果
問題 | No.1657 Sum is Prime (Easy Version) |
ユーザー | shinichi |
提出日時 | 2021-08-27 21:35:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,868 bytes |
コンパイル時間 | 431 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 123,524 KB |
最終ジャッジ日時 | 2024-11-21 01:08:09 |
合計ジャッジ時間 | 17,943 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 647 ms
121,108 KB |
testcase_01 | AC | 649 ms
120,636 KB |
testcase_02 | AC | 694 ms
123,272 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 630 ms
120,772 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 662 ms
122,804 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 662 ms
122,964 KB |
testcase_12 | AC | 696 ms
123,040 KB |
testcase_13 | AC | 683 ms
122,964 KB |
testcase_14 | AC | 677 ms
123,232 KB |
testcase_15 | AC | 675 ms
122,976 KB |
testcase_16 | AC | 673 ms
123,072 KB |
testcase_17 | AC | 689 ms
123,080 KB |
testcase_18 | AC | 682 ms
123,100 KB |
testcase_19 | AC | 692 ms
123,524 KB |
testcase_20 | AC | 715 ms
122,696 KB |
testcase_21 | AC | 686 ms
122,992 KB |
testcase_22 | AC | 639 ms
121,344 KB |
testcase_23 | AC | 669 ms
123,252 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 print(ans)