結果

問題 No.1532 Different Products
ユーザー 👑 emthrmemthrm
提出日時 2021-06-04 20:26:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
TLE  
(最初)
実行時間 -
コード長 1,489 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 217,804 KB
実行使用メモリ 91,320 KB
最終ジャッジ日時 2024-11-19 09:01:49
合計ジャッジ時間 191,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 365 ms
59,256 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
13,640 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
52,560 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 2 ms
36,508 KB
testcase_08 AC 3 ms
13,640 KB
testcase_09 AC 35 ms
13,844 KB
testcase_10 AC 535 ms
30,756 KB
testcase_11 AC 281 ms
22,512 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 AC 3 ms
50,128 KB
testcase_16 WA -
testcase_17 AC 303 ms
59,768 KB
testcase_18 AC 128 ms
20,936 KB
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 217 ms
59,880 KB
testcase_24 TLE -
testcase_25 WA -
testcase_26 AC 51 ms
13,636 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 279 ms
59,552 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
6,820 KB
testcase_62 AC 2 ms
6,820 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n; ll k; cin >> n >> k;
  int ans = 0;
  unordered_map<ll, int> dp{{1, 1}};
  for (int i = 2; i <= n; ++i) {
    vector<pair<ll, int>> add;
    vector<ll> era;
    for (auto [v, pat] : dp) {
      if (v * i > k) {
        era.emplace_back(v);
      } else {
        ans += pat;
        if (v * (i + 1) > k) {
          era.emplace_back(v);
        } else if (v * i * (i + 1) <= k) {
          add.emplace_back(v * i, pat);
        }
      }
    }
    for (ll e : era) dp.erase(e);
    for (auto [v, pat] : add) dp[v] += pat;
  }
  cout << ans * 2 + 1 << '\n';
  return 0;
}
0