結果

問題 No.1532 Different Products
ユーザー kotatsugamekotatsugame
提出日時 2021-06-04 21:48:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,056 ms / 4,000 ms
コード長 1,361 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 84,192 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-11-19 13:51:50
合計ジャッジ時間 92,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 389 ms
21,376 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 8 ms
6,820 KB
testcase_09 AC 333 ms
20,736 KB
testcase_10 AC 545 ms
28,672 KB
testcase_11 AC 506 ms
27,264 KB
testcase_12 AC 1,021 ms
35,712 KB
testcase_13 AC 868 ms
40,064 KB
testcase_14 AC 2,099 ms
37,888 KB
testcase_15 AC 7 ms
6,820 KB
testcase_16 AC 348 ms
18,432 KB
testcase_17 AC 614 ms
30,976 KB
testcase_18 AC 710 ms
34,944 KB
testcase_19 AC 947 ms
36,992 KB
testcase_20 AC 2,170 ms
39,680 KB
testcase_21 AC 447 ms
21,632 KB
testcase_22 AC 753 ms
34,816 KB
testcase_23 AC 861 ms
39,424 KB
testcase_24 AC 1,905 ms
38,400 KB
testcase_25 AC 861 ms
31,104 KB
testcase_26 AC 252 ms
16,512 KB
testcase_27 AC 640 ms
24,320 KB
testcase_28 AC 536 ms
25,344 KB
testcase_29 AC 476 ms
17,536 KB
testcase_30 AC 892 ms
27,520 KB
testcase_31 AC 903 ms
28,288 KB
testcase_32 AC 1,147 ms
30,720 KB
testcase_33 AC 799 ms
26,880 KB
testcase_34 AC 1,681 ms
35,840 KB
testcase_35 AC 1,128 ms
30,848 KB
testcase_36 AC 1,524 ms
34,176 KB
testcase_37 AC 254 ms
11,904 KB
testcase_38 AC 1,784 ms
36,096 KB
testcase_39 AC 1,481 ms
33,792 KB
testcase_40 AC 1,495 ms
34,304 KB
testcase_41 AC 3,056 ms
41,984 KB
testcase_42 AC 2,298 ms
39,168 KB
testcase_43 AC 2,471 ms
40,448 KB
testcase_44 AC 2,891 ms
41,856 KB
testcase_45 AC 2,918 ms
41,856 KB
testcase_46 AC 2,757 ms
41,216 KB
testcase_47 AC 2,973 ms
42,240 KB
testcase_48 AC 2,965 ms
41,856 KB
testcase_49 AC 2,955 ms
41,984 KB
testcase_50 AC 2,870 ms
41,856 KB
testcase_51 AC 2,962 ms
42,112 KB
testcase_52 AC 2,822 ms
41,728 KB
testcase_53 AC 2,995 ms
42,240 KB
testcase_54 AC 2,837 ms
41,728 KB
testcase_55 AC 2,942 ms
41,984 KB
testcase_56 AC 2,772 ms
41,344 KB
testcase_57 AC 2,789 ms
41,216 KB
testcase_58 AC 2,887 ms
41,856 KB
testcase_59 AC 2,610 ms
40,320 KB
testcase_60 AC 3,006 ms
42,240 KB
testcase_61 AC 4 ms
6,816 KB
testcase_62 AC 3 ms
6,816 KB
testcase_63 AC 2,939 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
using namespace std;
int N;
long K;
long ans;
int cnt[1<<17];
int cnt2[1<<17];
const int LIM=43;
int main()
{
	cin>>N>>K;
	map<long,int>mp;
	mp[1]=1;
	for(int i=2;i<=LIM&&i<=N;i++)
	{
		map<long,int>nxt;
		for(pair<long,int>p:mp)
		{
			long t=p.first;
			if(t*i>K)
			{
				if(t<1<<17)cnt[t]+=p.second;
				if(K/t<1<<17)cnt2[K/t]+=p.second;
				else cnt2[(1<<17)-1]+=p.second;
			}
			else
			{
				nxt[t]+=p.second;
				nxt[t*i]+=p.second;
			}
		}
		mp.swap(nxt);
	}
	for(pair<long,int>q:mp)
	{
		long p=q.first;
		if(p<1<<17)cnt[p]+=q.second;
		if(K/p<1<<17)cnt2[K/p]+=q.second;
		else cnt2[(1<<17)-1]+=q.second;
	}
	for(int i=1;i<1<<17;i++)cnt[i]+=cnt[i-1];
	for(int i=(1<<17)-1;i--;)cnt2[i]+=cnt2[i+1];
	if(N<=LIM)
	{
		cout<<(long)cnt2[0]*2-1<<endl;
		return 0;
	}
	ans=cnt2[1];
	for(int i=LIM+1;i<=N;i++)
	{
		ans+=cnt2[i];
		for(int j=i+1;j<=N;j++)
		{
			ans+=cnt2[i*j];
			for(int k=j+1;k<=N;k++)
			{
				int t=i*j*k;
				if(t>K)break;
				if(t<1<<17)ans+=cnt2[t];
				else ans+=cnt[K/t];
				for(int l=k+1;l<=N;l++)
				{
					int u=t*l;
					if(u>K)break;
					if(u<1<<17)ans+=cnt2[u];
					else ans+=cnt[K/u];
					for(int m=l+1;m<=N;m++)
					{
						long v=(long)u*m;
						if(v>K)break;
						if(v<1<<17)ans+=cnt2[v];
						else ans+=cnt[K/v];
					}
				}
			}
		}
	}
	cout<<ans*2-1<<endl;
}
0