結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 159 ms
100,864 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 35 ms
51,456 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 50 ms
61,952 KB
testcase_07 AC 49 ms
60,928 KB
testcase_08 AC 49 ms
61,568 KB
testcase_09 AC 50 ms
61,696 KB
testcase_10 AC 51 ms
61,824 KB
testcase_11 AC 60 ms
61,568 KB
testcase_12 AC 169 ms
99,840 KB
testcase_13 AC 105 ms
81,664 KB
testcase_14 AC 139 ms
95,104 KB
testcase_15 AC 136 ms
95,488 KB
testcase_16 AC 88 ms
76,800 KB
testcase_17 AC 97 ms
79,104 KB
testcase_18 AC 100 ms
80,384 KB
testcase_19 AC 155 ms
97,024 KB
testcase_20 AC 119 ms
86,400 KB
testcase_21 AC 166 ms
101,888 KB
testcase_22 AC 162 ms
101,888 KB
testcase_23 AC 158 ms
102,144 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