結果

問題 No.1532 Different Products
ユーザー kotatsugamekotatsugame
提出日時 2021-06-04 20:31:17
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 646 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 130,492 KB
実行使用メモリ 73,712 KB
最終ジャッジ日時 2024-11-19 09:23:06
合計ジャッジ時間 216,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 1,265 ms
57,660 KB
testcase_02 AC 8 ms
13,636 KB
testcase_03 AC 1 ms
13,640 KB
testcase_04 AC 2 ms
12,064 KB
testcase_05 AC 1 ms
42,984 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 10 ms
26,472 KB
testcase_08 AC 38 ms
26,608 KB
testcase_09 AC 314 ms
27,320 KB
testcase_10 AC 757 ms
40,080 KB
testcase_11 AC 501 ms
25,600 KB
testcase_12 TLE -
testcase_13 AC 1,057 ms
43,180 KB
testcase_14 TLE -
testcase_15 AC 10 ms
26,720 KB
testcase_16 AC 2,394 ms
27,432 KB
testcase_17 AC 528 ms
73,712 KB
testcase_18 AC 392 ms
43,012 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,307 ms
41,420 KB
testcase_23 AC 461 ms
44,128 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 311 ms
28,060 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 3,499 ms
26,604 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,761 ms
49,432 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 1 ms
6,816 KB
testcase_62 AC 2 ms
6,820 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N;
long K;
const int LIM=23;
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);
	}
}
int 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