結果

問題 No.1532 Different Products
ユーザー 👑 potato167potato167
提出日時 2021-06-04 21:06:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 948 ms / 4,000 ms
コード長 2,476 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 219,524 KB
実行使用メモリ 13,796 KB
最終ジャッジ日時 2024-04-30 01:01:42
合計ジャッジ時間 33,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 166 ms
8,164 KB
testcase_02 AC 16 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 94 ms
5,376 KB
testcase_09 AC 119 ms
7,392 KB
testcase_10 AC 167 ms
11,620 KB
testcase_11 AC 149 ms
11,496 KB
testcase_12 AC 358 ms
11,488 KB
testcase_13 AC 181 ms
11,360 KB
testcase_14 AC 790 ms
12,644 KB
testcase_15 AC 36 ms
5,376 KB
testcase_16 AC 199 ms
7,780 KB
testcase_17 AC 152 ms
11,364 KB
testcase_18 AC 136 ms
11,492 KB
testcase_19 AC 303 ms
11,488 KB
testcase_20 AC 678 ms
13,032 KB
testcase_21 AC 262 ms
8,548 KB
testcase_22 AC 200 ms
11,492 KB
testcase_23 AC 147 ms
11,492 KB
testcase_24 AC 693 ms
12,512 KB
testcase_25 AC 326 ms
11,368 KB
testcase_26 AC 115 ms
7,396 KB
testcase_27 AC 337 ms
9,320 KB
testcase_28 AC 248 ms
11,492 KB
testcase_29 AC 244 ms
7,908 KB
testcase_30 AC 457 ms
11,492 KB
testcase_31 AC 443 ms
11,492 KB
testcase_32 AC 525 ms
11,492 KB
testcase_33 AC 400 ms
11,488 KB
testcase_34 AC 604 ms
12,008 KB
testcase_35 AC 506 ms
11,492 KB
testcase_36 AC 625 ms
11,652 KB
testcase_37 AC 174 ms
7,272 KB
testcase_38 AC 704 ms
12,132 KB
testcase_39 AC 582 ms
11,488 KB
testcase_40 AC 590 ms
11,620 KB
testcase_41 AC 862 ms
13,664 KB
testcase_42 AC 727 ms
12,900 KB
testcase_43 AC 866 ms
13,156 KB
testcase_44 AC 854 ms
13,796 KB
testcase_45 AC 821 ms
13,668 KB
testcase_46 AC 818 ms
13,416 KB
testcase_47 AC 835 ms
13,792 KB
testcase_48 AC 884 ms
13,668 KB
testcase_49 AC 882 ms
13,792 KB
testcase_50 AC 882 ms
13,792 KB
testcase_51 AC 948 ms
13,668 KB
testcase_52 AC 898 ms
13,532 KB
testcase_53 AC 900 ms
13,796 KB
testcase_54 AC 880 ms
13,668 KB
testcase_55 AC 925 ms
13,716 KB
testcase_56 AC 760 ms
13,536 KB
testcase_57 AC 752 ms
13,540 KB
testcase_58 AC 757 ms
13,720 KB
testcase_59 AC 690 ms
13,288 KB
testcase_60 AC 775 ms
13,796 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 769 ms
13,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
using std::cout;
using std::cin;
using std::endl;
using ll=long long;
using ld=long double;
ll I=1167167167167167167;
ll Q=998244353;
#define rep(i,a) for (ll i=0;i<a;i++)
template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>;
template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;}
template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;}
template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());}
template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});}
template<class T> void print_tate(vector<T> &v) {rep(i,v.size()) cout<<v[i]<<"\n";}
void yneos(bool a){if(a) cout<<"Yes"<<"\n"; else cout<<"No"<<"\n";}


//a以下の素数を列挙、計算量:Nlog(log(N))
vector<long long> Eratosthenes(long long a){
    if(a<2) return {};
    vector<long long> p(a+1),ans;
    p[0]=1,p[1]=1;
    long long k=2;
    while(k*k<=a){
        if(p[k]==0){
            ans.push_back(k);
            for(long long i=2;i*k<=a;i++){
                p[i*k]=1;
            }
        }
        k++;
    }
    while(k<=a){
        if(p[k]==0) ans.push_back(k);
        k++;
    }
    return ans;
}


//Nの正の約数を列挙する
vector<long long> Divisors(long long N){
    vector<long long> p,q;
    long long i=1,K=0;
    while(i*i<N){
        if(N%i==0){
            p.push_back(i);
            q.push_back(N/i);
            K++;
        }
        i++;
    }
    if(i*i==N) p.push_back(i);
    for(int i=K-1;i>=0;i--){
        p.push_back(q[i]);
    }
    return p;
}

//おちこんだりもしたけれど、私はげんきです。
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	ll N,K;
	cin>>N>>K;

	chmin(N,K);
	int D=9;
	vector<map<ll,ll>> m(D);
	m[0][K]=1;
	vector<ll> p;
	int M=min(20ll,N);
	rep(i,(1<<M)){
		ll X=1;
		rep(j,M){
			if(i&(1<<j)) X*=(j+1);
			if(X>K) break;
		}
		if(X<=K) p.push_back(X);
	}
	p.push_back(I);
	So(p);
	for(ll i=M+1;i<=N;i++){
		for(int j=D-1;j>=0;j--){
			for(auto x:m[j]){
				if(x.first>=i){
					m[j+1][x.first/i]+=x.second;
				}
			}
		}
	}
	ll ans=0;
	rep(i,D){
		for(auto x:m[i]){
			ans+=(ll)UB(p,x.first)*x.second;
		}
	}
	cout<<ans-1<<"\n";
}
0