結果

問題 No.1532 Different Products
ユーザー 沙耶花沙耶花
提出日時 2021-06-04 21:09:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,126 bytes
コンパイル時間 4,712 ms
コンパイル使用メモリ 271,072 KB
実行使用メモリ 25,688 KB
最終ジャッジ日時 2024-09-26 12:47:53
合計ジャッジ時間 80,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 421 ms
14,080 KB
testcase_02 AC 3 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 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 88 ms
11,008 KB
testcase_10 AC 439 ms
16,768 KB
testcase_11 AC 337 ms
15,872 KB
testcase_12 AC 1,254 ms
21,376 KB
testcase_13 AC 551 ms
20,736 KB
testcase_14 AC 3,538 ms
23,960 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 600 ms
13,736 KB
testcase_17 AC 362 ms
17,280 KB
testcase_18 AC 189 ms
16,000 KB
testcase_19 AC 1,082 ms
20,992 KB
testcase_20 AC 3,119 ms
24,624 KB
testcase_21 AC 1,021 ms
14,976 KB
testcase_22 AC 648 ms
19,584 KB
testcase_23 AC 246 ms
18,304 KB
testcase_24 AC 2,706 ms
24,152 KB
testcase_25 AC 1,231 ms
19,328 KB
testcase_26 AC 122 ms
10,880 KB
testcase_27 AC 1,530 ms
16,384 KB
testcase_28 AC 845 ms
16,512 KB
testcase_29 AC 851 ms
13,304 KB
testcase_30 AC 2,213 ms
18,176 KB
testcase_31 AC 2,177 ms
18,432 KB
testcase_32 AC 2,556 ms
19,712 KB
testcase_33 AC 1,926 ms
17,664 KB
testcase_34 AC 2,896 ms
23,076 KB
testcase_35 AC 2,504 ms
19,712 KB
testcase_36 AC 3,132 ms
21,248 KB
testcase_37 AC 452 ms
9,728 KB
testcase_38 AC 2,909 ms
23,256 KB
testcase_39 AC 2,488 ms
21,120 KB
testcase_40 AC 2,832 ms
21,376 KB
testcase_41 AC 3,959 ms
25,688 KB
testcase_42 AC 3,482 ms
24,548 KB
testcase_43 AC 3,703 ms
25,044 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 AC 3,991 ms
25,016 KB
testcase_60 TLE -
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001
long long ans=  0;
long long K;
vector<long long> x;
map<long long,long long> mp;
vector<long long> v,sum;
void dfs(int ind,long long cur){
	if(cur > K)return;
	if(ind == x.size()){
		int d = distance(v.begin(),upper_bound(v.begin(),v.end(),K/cur));
		ans += sum[d-1];
		return;
	}
	else{
		dfs(ind+1,cur);
		dfs(ind+1,cur*x[ind]);
	}
}

int main(){
	int N;
	cin>>N;
	cin>>K;
	vector<int> d = {2,3,5,7,11,13,17,19};
	mp[1]++;
	
	for(int i=1;i<=N;i++){
		int t = i;
		rep(j,d.size()){
			while(t%d[j]==0){
				t /= d[j];
			}
		}
		
		if(t!=1){
			x.push_back(i);
		}
		else{
			map<long long,long long> mp2 = mp;
			for(auto a:mp){
				if(a.first*i>K)break;
				mp2[a.first*i] += a.second;
			}
			swap(mp,mp2);
		}
	}
	
	v.push_back(0);
	sum.push_back(0);
	for(auto a:mp){
		v.push_back(a.first);
		long long t = sum.back();
		sum.push_back(a.second + t);
	}
	
	dfs(0,1);
	ans--;
	cout<<ans<<endl;
	
	return 0;
}
0