結果

問題 No.1532 Different Products
ユーザー kotatsugamekotatsugame
提出日時 2021-06-04 20:28:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 642 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 76,088 KB
実行使用メモリ 23,448 KB
最終ジャッジ日時 2024-11-19 09:07:48
合計ジャッジ時間 208,965 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
16,776 KB
testcase_01 AC 874 ms
12,876 KB
testcase_02 AC 16 ms
16,972 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
16,844 KB
testcase_05 AC 2 ms
10,496 KB
testcase_06 AC 2 ms
16,840 KB
testcase_07 AC 20 ms
10,496 KB
testcase_08 AC 74 ms
10,496 KB
testcase_09 AC 138 ms
15,604 KB
testcase_10 AC 601 ms
19,220 KB
testcase_11 AC 355 ms
16,976 KB
testcase_12 TLE -
testcase_13 AC 877 ms
16,972 KB
testcase_14 TLE -
testcase_15 AC 20 ms
13,640 KB
testcase_16 AC 1,728 ms
12,876 KB
testcase_17 AC 381 ms
23,196 KB
testcase_18 AC 179 ms
16,972 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 3,548 ms
12,876 KB
testcase_22 AC 1,183 ms
20,092 KB
testcase_23 AC 221 ms
23,324 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 149 ms
16,112 KB
testcase_27 TLE -
testcase_28 AC 3,270 ms
16,844 KB
testcase_29 AC 2,636 ms
19,220 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,061 ms
15,216 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
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 TLE -
testcase_60 TLE -
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:19:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   19 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N;
long K;
const int LIM=20;
long ans;
vector<long>P;
void f(long k,int n)
{
	if(k==0)return;
	ans+=upper_bound(P.begin(),P.end(),k)-P.begin();
	for(int m=min((long)n,k);m>LIM;m--)
	{
		f(k/m,m-1);
	}
}
main()
{
	cin>>N>>K;
	if(N<=LIM)
	{
		for(int i=1;i<1<<N;i++)
		{
			long t=1;
			for(int j=0;t<=K&&j<N;j++)if(i>>j&1)t*=j+1;
			if(t<=K)ans++;
		}
		cout<<ans<<endl;
		return 0;
	}
	for(int i=0;i<1<<LIM;i++)
	{
		long t=1;
		for(int j=0;t<=K&&j<LIM;j++)if(i>>j&1)t*=j+1;
		if(t<=K)P.push_back(t);
	}
	sort(P.begin(),P.end());
	f(K,N);
	cout<<ans-1<<endl;
}
0