結果

問題 No.1532 Different Products
ユーザー kotatsugamekotatsugame
提出日時 2021-06-04 21:48:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,493 ms / 4,000 ms
コード長 1,361 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 84,024 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-04-30 02:27:36
合計ジャッジ時間 111,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 539 ms
21,504 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 491 ms
20,736 KB
testcase_10 AC 772 ms
28,800 KB
testcase_11 AC 725 ms
27,520 KB
testcase_12 AC 1,315 ms
35,840 KB
testcase_13 AC 1,150 ms
40,192 KB
testcase_14 AC 2,503 ms
37,760 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 485 ms
18,432 KB
testcase_17 AC 851 ms
31,104 KB
testcase_18 AC 993 ms
35,072 KB
testcase_19 AC 1,224 ms
37,120 KB
testcase_20 AC 2,577 ms
39,680 KB
testcase_21 AC 625 ms
21,760 KB
testcase_22 AC 970 ms
34,944 KB
testcase_23 AC 1,114 ms
39,424 KB
testcase_24 AC 2,265 ms
38,528 KB
testcase_25 AC 1,082 ms
31,232 KB
testcase_26 AC 357 ms
16,640 KB
testcase_27 AC 825 ms
24,448 KB
testcase_28 AC 740 ms
25,344 KB
testcase_29 AC 620 ms
17,536 KB
testcase_30 AC 1,141 ms
27,520 KB
testcase_31 AC 1,153 ms
28,288 KB
testcase_32 AC 1,385 ms
30,720 KB
testcase_33 AC 1,007 ms
27,008 KB
testcase_34 AC 1,990 ms
35,840 KB
testcase_35 AC 1,369 ms
30,848 KB
testcase_36 AC 1,823 ms
34,176 KB
testcase_37 AC 303 ms
12,032 KB
testcase_38 AC 2,112 ms
36,096 KB
testcase_39 AC 1,739 ms
33,920 KB
testcase_40 AC 1,834 ms
34,432 KB
testcase_41 AC 3,345 ms
42,112 KB
testcase_42 AC 2,681 ms
39,424 KB
testcase_43 AC 2,929 ms
40,448 KB
testcase_44 AC 3,363 ms
41,856 KB
testcase_45 AC 3,396 ms
41,984 KB
testcase_46 AC 3,214 ms
41,216 KB
testcase_47 AC 3,493 ms
42,368 KB
testcase_48 AC 3,368 ms
41,984 KB
testcase_49 AC 3,393 ms
42,112 KB
testcase_50 AC 3,370 ms
41,856 KB
testcase_51 AC 3,427 ms
42,112 KB
testcase_52 AC 3,325 ms
41,856 KB
testcase_53 AC 3,469 ms
42,240 KB
testcase_54 AC 3,333 ms
41,728 KB
testcase_55 AC 3,394 ms
41,984 KB
testcase_56 AC 3,186 ms
41,216 KB
testcase_57 AC 3,305 ms
41,216 KB
testcase_58 AC 3,430 ms
41,856 KB
testcase_59 AC 3,050 ms
40,320 KB
testcase_60 AC 3,475 ms
42,368 KB
testcase_61 AC 4 ms
5,376 KB
testcase_62 AC 3 ms
5,376 KB
testcase_63 AC 3,418 ms
41,984 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