結果

問題 No.1532 Different Products
ユーザー suzuken_wsuzuken_w
提出日時 2021-06-04 23:22:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,266 ms / 4,000 ms
コード長 1,298 bytes
コンパイル時間 2,718 ms
コンパイル使用メモリ 221,092 KB
実行使用メモリ 12,020 KB
最終ジャッジ日時 2024-11-20 07:12:09
合計ジャッジ時間 41,347 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 110 ms
5,744 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 22 ms
5,248 KB
testcase_10 AC 116 ms
6,768 KB
testcase_11 AC 84 ms
5,852 KB
testcase_12 AC 371 ms
8,596 KB
testcase_13 AC 144 ms
7,808 KB
testcase_14 AC 903 ms
11,004 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 177 ms
5,440 KB
testcase_17 AC 80 ms
6,048 KB
testcase_18 AC 47 ms
5,836 KB
testcase_19 AC 309 ms
8,524 KB
testcase_20 AC 885 ms
11,156 KB
testcase_21 AC 237 ms
6,116 KB
testcase_22 AC 166 ms
7,560 KB
testcase_23 AC 63 ms
6,852 KB
testcase_24 AC 862 ms
10,720 KB
testcase_25 AC 357 ms
8,032 KB
testcase_26 AC 30 ms
5,248 KB
testcase_27 AC 376 ms
7,284 KB
testcase_28 AC 242 ms
6,944 KB
testcase_29 AC 241 ms
5,744 KB
testcase_30 AC 496 ms
7,844 KB
testcase_31 AC 563 ms
7,896 KB
testcase_32 AC 583 ms
8,416 KB
testcase_33 AC 460 ms
7,632 KB
testcase_34 AC 729 ms
10,388 KB
testcase_35 AC 551 ms
8,536 KB
testcase_36 AC 763 ms
9,012 KB
testcase_37 AC 128 ms
5,248 KB
testcase_38 AC 819 ms
10,544 KB
testcase_39 AC 719 ms
8,988 KB
testcase_40 AC 708 ms
8,900 KB
testcase_41 AC 1,115 ms
11,800 KB
testcase_42 AC 982 ms
11,316 KB
testcase_43 AC 1,115 ms
11,392 KB
testcase_44 AC 1,250 ms
11,944 KB
testcase_45 AC 1,158 ms
11,884 KB
testcase_46 AC 1,129 ms
11,756 KB
testcase_47 AC 1,131 ms
11,944 KB
testcase_48 AC 1,170 ms
11,892 KB
testcase_49 AC 1,179 ms
11,912 KB
testcase_50 AC 1,131 ms
12,020 KB
testcase_51 AC 1,118 ms
11,928 KB
testcase_52 AC 1,174 ms
11,848 KB
testcase_53 AC 1,236 ms
11,944 KB
testcase_54 AC 1,232 ms
11,844 KB
testcase_55 AC 1,142 ms
11,912 KB
testcase_56 AC 1,080 ms
11,884 KB
testcase_57 AC 1,193 ms
11,796 KB
testcase_58 AC 1,186 ms
11,868 KB
testcase_59 AC 1,076 ms
11,560 KB
testcase_60 AC 1,258 ms
11,836 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 1,266 ms
11,768 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