結果

問題 No.1532 Different Products
ユーザー spipipikespipipike
提出日時 2021-06-04 23:00:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 523 ms / 4,000 ms
コード長 918 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 189,864 KB
実行使用メモリ 22,868 KB
最終ジャッジ日時 2024-11-20 06:17:10
合計ジャッジ時間 20,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 93 ms
12,532 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 69 ms
11,376 KB
testcase_10 AC 110 ms
14,716 KB
testcase_11 AC 97 ms
14,216 KB
testcase_12 AC 218 ms
18,488 KB
testcase_13 AC 132 ms
17,436 KB
testcase_14 AC 365 ms
19,748 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 93 ms
11,156 KB
testcase_17 AC 114 ms
14,624 KB
testcase_18 AC 103 ms
14,732 KB
testcase_19 AC 209 ms
18,600 KB
testcase_20 AC 404 ms
20,212 KB
testcase_21 AC 137 ms
12,972 KB
testcase_22 AC 140 ms
16,260 KB
testcase_23 AC 117 ms
15,604 KB
testcase_24 AC 350 ms
19,880 KB
testcase_25 AC 187 ms
16,296 KB
testcase_26 AC 48 ms
9,560 KB
testcase_27 AC 167 ms
13,948 KB
testcase_28 AC 137 ms
13,756 KB
testcase_29 AC 115 ms
11,128 KB
testcase_30 AC 224 ms
15,640 KB
testcase_31 AC 232 ms
15,824 KB
testcase_32 AC 290 ms
16,536 KB
testcase_33 AC 197 ms
15,336 KB
testcase_34 AC 319 ms
19,128 KB
testcase_35 AC 267 ms
17,576 KB
testcase_36 AC 315 ms
18,520 KB
testcase_37 AC 73 ms
9,056 KB
testcase_38 AC 365 ms
19,308 KB
testcase_39 AC 293 ms
18,388 KB
testcase_40 AC 376 ms
18,544 KB
testcase_41 AC 499 ms
22,812 KB
testcase_42 AC 377 ms
20,140 KB
testcase_43 AC 403 ms
20,476 KB
testcase_44 AC 481 ms
22,684 KB
testcase_45 AC 496 ms
22,692 KB
testcase_46 AC 512 ms
22,588 KB
testcase_47 AC 511 ms
22,728 KB
testcase_48 AC 518 ms
22,692 KB
testcase_49 AC 521 ms
22,704 KB
testcase_50 AC 523 ms
22,808 KB
testcase_51 AC 499 ms
22,716 KB
testcase_52 AC 475 ms
22,524 KB
testcase_53 AC 510 ms
22,732 KB
testcase_54 AC 481 ms
22,524 KB
testcase_55 AC 510 ms
22,700 KB
testcase_56 AC 511 ms
22,460 KB
testcase_57 AC 483 ms
22,484 KB
testcase_58 AC 511 ms
22,668 KB
testcase_59 AC 462 ms
20,480 KB
testcase_60 AC 511 ms
22,868 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 494 ms
22,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using P = pair<ll, ll>;

int main(){
	int n;
	ll k;
	cin>>n>>k;

	int mid=min(30, n);
	unordered_map<ll, ll> ma, da;
	ma[1]=1;
	for(int i=1; i<=mid; i++){
		vector<P> al;
		for(auto p : ma){
			if((ll)i*p.first<=k) al.push_back(P((ll)i*p.first, p.second));
		}
		for(P p : al) ma[p.first]+=p.second;
	}

	da[k]=1;
	for(int i=mid+1; i<=n; i++){
		vector<P> al;
		for(auto p : da){
			if(p.first/i>0) al.push_back(P(p.first/i, p.second));
		}
		for(P p : al) da[p.first]+=p.second;
	}

	unordered_set<ll> kse;
	for(auto p : ma) kse.insert(p.first);
	for(auto p : da) kse.insert(p.first);
	vector<ll> kl;
	for(ll e : kse) kl.push_back(e);
	sort(kl.begin(), kl.end());

	ll c=0, tot=0;
	for(ll e : kl){
		if(ma.count(e)) c+=ma[e];
		if(da.count(e)) tot+=c*da[e];
	}
	tot-=1;

	cout<<tot<<endl;
	return 0;
}
0