結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー V_MelvilleV_Melville
提出日時 2021-08-27 22:03:41
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 200,776 KB
最終ジャッジ日時 2025-01-24 03:03:32
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::set;
using std::vector;
using ll = long long;

// linear sieve
vector<int> ps, pf;
void sieve(int mx) {
    pf.resize(mx + 1);
    rep(i, mx + 1) pf[i] = i;
    for (int i = 2; i <= mx; ++i) {
        if (pf[i] == i) ps.push_back(i);
        for (int j = 0; j < ps.size() and ps[j] <= pf[i]; ++j) {
            int x = ps[j] * i;
            if (x > mx) break;
            pf[x] = ps[j];
        }
    }
}

int main() {
	const int MX = 2000005;
	sieve(MX);
	set<int> s;
	for (int p : ps) s.insert(p);
	
	int l, r;
	cin >> l >> r;
	
	ll ans = 0;
	for (int i = l; i <= r; ++i) {
		if (s.count(i)) ++ans;
		if (i == r) continue;
		ll x = 2 * i + 1;
		if (s.count(x)) ++ans;
	}
	
	cout << ans << '\n';
	
	return 0;
}
0