結果

問題 No.1532 Different Products
ユーザー kwm_tkwm_t
提出日時 2021-06-06 01:48:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,255 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 174,860 KB
実行使用メモリ 274,304 KB
最終ジャッジ日時 2024-11-22 02:28:41
合計ジャッジ時間 255,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 TLE -
testcase_02 AC 3 ms
10,624 KB
testcase_03 AC 2 ms
205,312 KB
testcase_04 AC 2 ms
12,196 KB
testcase_05 AC 2 ms
10,624 KB
testcase_06 AC 2 ms
10,624 KB
testcase_07 AC 4 ms
227,584 KB
testcase_08 AC 7 ms
10,624 KB
testcase_09 AC 383 ms
41,344 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 7 ms
10,624 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,579 ms
109,056 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2,577 ms
157,056 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,163 ms
61,568 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
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
10,624 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	long long n, k; cin >> n >> k;
	map<long long, long long>mp;
	mp[1] = 1;
	rep2(i, 1, n + 1) {
		map<long long, long long>cmp = mp;
		for (auto p : mp) {
			if (p.first * i <= k)cmp[p.first * i] += p.second;
		}
		swap(mp, cmp);
	}
	long long ans = 0;
	for (auto p : mp)ans += p.second;
	ans--;
	cout << ans << endl;
	return 0;
}
0