結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー simkarensimkaren
提出日時 2021-09-01 14:32:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-11-27 17:21:50
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 189 ms
100,864 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 54 ms
61,952 KB
testcase_07 AC 52 ms
60,288 KB
testcase_08 AC 56 ms
61,312 KB
testcase_09 AC 56 ms
61,440 KB
testcase_10 AC 55 ms
62,080 KB
testcase_11 AC 56 ms
62,080 KB
testcase_12 AC 188 ms
100,284 KB
testcase_13 AC 117 ms
81,792 KB
testcase_14 AC 161 ms
94,976 KB
testcase_15 AC 164 ms
95,488 KB
testcase_16 AC 97 ms
76,032 KB
testcase_17 AC 106 ms
78,720 KB
testcase_18 AC 110 ms
81,024 KB
testcase_19 AC 174 ms
97,152 KB
testcase_20 AC 130 ms
87,040 KB
testcase_21 AC 195 ms
101,632 KB
testcase_22 AC 194 ms
102,400 KB
testcase_23 AC 194 ms
101,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class PrimeTable:
    def __init__(self, lim):
        self.isPrime = [True for _ in range(lim + 1)]
        self.isPrime[0] = self.isPrime[1] = False
        for i in range(2, lim):
            if self.isPrime[i]:
                for j in range(2 * i, lim + 1, i):
                    self.isPrime[j] = False
        self.acc = [0 for _ in range(lim + 1)]
        for i in range(2, lim + 1):
            self.acc[i] = self.acc[i - 1] + (1 if self.isPrime[i] else 0)
    def isPrime(self, val): return self.isPrime[val]
    def cntPrime(self, l, r): return self.acc[r] - self.acc[l - 1]

def main():
    L, R = map(int, input().split())
    pt = PrimeTable(2 * R)
    ans = pt.cntPrime(L, R) + pt.cntPrime(2 * L + 1, 2 * R)
    print(ans)    

main()
0