結果

問題 No.1059 素敵な集合
ユーザー wdpuyowdpuyo
提出日時 2020-09-23 10:23:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,302 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 169,016 KB
実行使用メモリ 4,820 KB
最終ジャッジ日時 2023-09-09 23:05:07
合計ジャッジ時間 3,172 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 6 ms
4,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
4,564 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 1000000007
#define rep(i, N) for(ll i = 0; i < N; i++)
#define rep2(i, j, k) for(ll i = j; i < k; i++)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define print(x) cout << x << "\n"
#define print2(x, y) cout << x << " " << y << "\n"
#define printv(vec) rep(lp, vec.size()) cout << vec[lp] << " "; print(""); 
#define show(x) cerr << #x << " = " << x << "\n";
#define ALL(v) v.begin(), v.end()
#define SUM(v) accumulate(ALL(v), 0)
#define MAX(v) *max_element(ALL(v))
#define MIN(v) *min_element(ALL(v))
#define SORT(v) sort(ALL(v))
#define REV(v) reverse(ALL(v))
#define pb(x) emplace_back(x)
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
typedef long long ll;
using namespace std;
using vl = vector<ll>;
using vvl = vector<vector<ll>>;
using vs = vector<string>;

const int mod = 998244353;
class mint {
public:
	ll x;
	mint(ll x = 0) : x((x % mod + mod) % mod) {}
	mint operator-() const { 
		return mint(-x);
	}
	mint& operator+=(const mint& a) {
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator-=(const mint& a) {
		if ((x += mod - a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator*=(const  mint& a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint operator+(const mint& a) const {
		mint res(*this);
		return res += a;
	}
	mint operator-(const mint& a) const {
		mint res(*this);
		return res -= a;
	}
	mint operator*(const mint& a) const {
		mint res(*this);
		return res *= a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t >> 1);
		a *= a;
		if (t & 1) a *= *this;
		return a;
	}
	mint inv() const {
		return pow(mod - 2);
	}
	mint& operator/=(const mint& a) {
		return (*this) *= a.inv();
	}
	mint operator/(const mint& a) const {
		mint res(*this);
		return res /= a;
	}
	friend ostream& operator<<(ostream& os, const mint& m){
		os << m.x;
		return os;
	}
};

ll modpow(ll a, ll n){
	ll res = 1;
	while (n > 0) {
		if (n & 1) res = res * a % mod;
		a = a * a % mod;
		n >>= 1;
	}
	return res;
}

struct union_find{

	vl parent;
	vl sizes;

	void init(ll n) {
	rep(i, n) parent.push_back(i);
	rep(i, n) sizes.push_back(1);
	return;
	}

	ll root(ll n){
	if(parent[n] == n) return n;
	return parent[n] = root(parent[n]);
	}

	ll size(ll n) {
	return sizes[root(n)];
	}

	bool is_same(ll a, ll b){
	return root(a) == root(b);
	}

	void unite(ll a, ll b){
	if(is_same(a, b)) return;
	sizes[root(a)] += size(b);
	parent[root(b)] = root(a);
	return;
	}
};

ll binary_cnt(vl& v, ll key, ll arg){
	
	if(arg == 0){
		auto itr = upper_bound(ALL(v), key);
		ll num = itr - v.begin();
		return num - 1;
	}
	if(arg == 1){
		auto itr = lower_bound(ALL(v), key);
		ll num = itr - v.begin();
		return num - 1;
	}
	if(arg == 2){
		auto itr = lower_bound(ALL(v), key);
		ll num = v.end() - itr;
		return v.size() - num;
	}
	else{
		auto itr = upper_bound(ALL(v), key);
		ll num = v.end() - itr;
		return v.size() - num;
	}
	
}	

void Main(){

	ll L, R;
	cin >> L >> R;
	
	ll ans = R - L;
	vl v(R + 10, 1);
	
	rep2(i, L, R + 1){
		for(ll j = 2 * i; j <= R; j += i){
			if(v[j]){
				ans -= 1;
				v[j] = 0;
			}
		}
	}
	
	print(ans);

}

int main(){
	
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	ll t = 1;
	//cin >> t;
	rep(i, t) Main();
	return 0;
	
}



0