結果

問題 No.1532 Different Products
ユーザー suzuken_wsuzuken_w
提出日時 2021-06-04 23:22:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 782 ms / 4,000 ms
コード長 1,298 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 220,832 KB
実行使用メモリ 12,532 KB
最終ジャッジ日時 2024-04-30 12:15:45
合計ジャッジ時間 28,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 100 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 19 ms
6,940 KB
testcase_10 AC 101 ms
6,940 KB
testcase_11 AC 74 ms
6,940 KB
testcase_12 AC 290 ms
8,596 KB
testcase_13 AC 121 ms
7,816 KB
testcase_14 AC 623 ms
11,004 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 160 ms
6,944 KB
testcase_17 AC 75 ms
6,940 KB
testcase_18 AC 42 ms
6,940 KB
testcase_19 AC 251 ms
8,656 KB
testcase_20 AC 612 ms
11,160 KB
testcase_21 AC 214 ms
6,940 KB
testcase_22 AC 139 ms
7,556 KB
testcase_23 AC 56 ms
6,944 KB
testcase_24 AC 558 ms
10,716 KB
testcase_25 AC 278 ms
8,032 KB
testcase_26 AC 24 ms
6,940 KB
testcase_27 AC 302 ms
7,028 KB
testcase_28 AC 210 ms
7,080 KB
testcase_29 AC 221 ms
6,944 KB
testcase_30 AC 459 ms
7,964 KB
testcase_31 AC 423 ms
7,896 KB
testcase_32 AC 459 ms
8,420 KB
testcase_33 AC 382 ms
7,752 KB
testcase_34 AC 529 ms
10,388 KB
testcase_35 AC 454 ms
8,412 KB
testcase_36 AC 560 ms
9,276 KB
testcase_37 AC 113 ms
6,940 KB
testcase_38 AC 563 ms
10,548 KB
testcase_39 AC 520 ms
8,988 KB
testcase_40 AC 515 ms
9,028 KB
testcase_41 AC 741 ms
12,292 KB
testcase_42 AC 675 ms
11,188 KB
testcase_43 AC 692 ms
11,268 KB
testcase_44 AC 779 ms
11,888 KB
testcase_45 AC 759 ms
11,900 KB
testcase_46 AC 758 ms
11,756 KB
testcase_47 AC 769 ms
12,532 KB
testcase_48 AC 771 ms
11,892 KB
testcase_49 AC 750 ms
12,048 KB
testcase_50 AC 755 ms
11,884 KB
testcase_51 AC 769 ms
12,160 KB
testcase_52 AC 762 ms
11,956 KB
testcase_53 AC 782 ms
12,092 KB
testcase_54 AC 753 ms
11,980 KB
testcase_55 AC 775 ms
12,040 KB
testcase_56 AC 753 ms
11,708 KB
testcase_57 AC 759 ms
11,796 KB
testcase_58 AC 750 ms
11,876 KB
testcase_59 AC 725 ms
11,744 KB
testcase_60 AC 771 ms
11,964 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 1 ms
6,940 KB
testcase_63 AC 758 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include<bits/stdc++.h> 
using namespace std;
using ll=long long;
using P=pair<ll,ll>;
template<class T> using V=vector<T>; 
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
const ll inf=(1e18);
//const ll mod=998244353;
const ll mod=1000000007;
ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;}
ll LCM(ll c,ll d){return c/GCD(c,d)*d;}
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T>void debag(const vector<T> &a){cerr<<"debag :";for(auto v:a)cerr<<v<<" ";cerr<<"\n";}
template<class T>void print(const vector<T> &a){for(auto v:a)cout<<v<<" ";cout<<"\n";}
int main(){
     ll n,k;
     cin>>n>>k;
     map<ll,ll,greater<ll>> dp;
     dp[k]=1;
     ll ans=0;
     for(ll i=1;i<=n;i++){
         V<P> tmp;
            for(auto &p:dp){
                 if(p.fi/i==0)break;
                 tmp.emplace_back(p.fi/i,p.se);
            }
            for(P &p:tmp){
                    dp[p.fi]+=p.se;
            }
     }
     for(auto &p:dp){
           ans+=p.se;
     }
     ans--;
     cout<<ans<<"\n";
}
0