結果

問題 No.1532 Different Products
ユーザー chocoruskchocorusk
提出日時 2021-06-04 20:06:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,080 ms / 4,000 ms
コード長 979 bytes
コンパイル時間 3,859 ms
コンパイル使用メモリ 198,112 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-04-29 23:06:15
合計ジャッジ時間 90,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 205 ms
6,528 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 39 ms
5,376 KB
testcase_10 AC 209 ms
7,680 KB
testcase_11 AC 152 ms
7,040 KB
testcase_12 AC 814 ms
10,496 KB
testcase_13 AC 294 ms
9,344 KB
testcase_14 AC 2,099 ms
12,800 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 325 ms
6,528 KB
testcase_17 AC 157 ms
7,296 KB
testcase_18 AC 90 ms
7,040 KB
testcase_19 AC 736 ms
10,624 KB
testcase_20 AC 2,171 ms
12,928 KB
testcase_21 AC 479 ms
7,552 KB
testcase_22 AC 371 ms
8,960 KB
testcase_23 AC 125 ms
7,808 KB
testcase_24 AC 1,981 ms
12,416 KB
testcase_25 AC 762 ms
9,600 KB
testcase_26 AC 51 ms
5,376 KB
testcase_27 AC 791 ms
8,320 KB
testcase_28 AC 461 ms
7,936 KB
testcase_29 AC 449 ms
6,656 KB
testcase_30 AC 1,112 ms
9,472 KB
testcase_31 AC 1,115 ms
9,600 KB
testcase_32 AC 1,414 ms
10,368 KB
testcase_33 AC 849 ms
9,088 KB
testcase_34 AC 1,874 ms
11,776 KB
testcase_35 AC 1,429 ms
10,368 KB
testcase_36 AC 2,331 ms
11,392 KB
testcase_37 AC 243 ms
5,376 KB
testcase_38 AC 2,437 ms
12,032 KB
testcase_39 AC 1,844 ms
11,264 KB
testcase_40 AC 2,191 ms
11,392 KB
testcase_41 AC 3,080 ms
13,952 KB
testcase_42 AC 2,714 ms
13,056 KB
testcase_43 AC 2,644 ms
13,568 KB
testcase_44 AC 2,839 ms
14,208 KB
testcase_45 AC 2,827 ms
14,080 KB
testcase_46 AC 2,811 ms
13,824 KB
testcase_47 AC 2,949 ms
14,336 KB
testcase_48 AC 2,864 ms
14,208 KB
testcase_49 AC 2,951 ms
14,336 KB
testcase_50 AC 2,792 ms
14,208 KB
testcase_51 AC 2,677 ms
14,208 KB
testcase_52 AC 2,785 ms
14,208 KB
testcase_53 AC 2,861 ms
14,336 KB
testcase_54 AC 2,885 ms
14,208 KB
testcase_55 AC 2,313 ms
14,208 KB
testcase_56 AC 2,031 ms
14,080 KB
testcase_57 AC 1,983 ms
14,080 KB
testcase_58 AC 2,272 ms
14,208 KB
testcase_59 AC 2,007 ms
13,696 KB
testcase_60 AC 2,071 ms
14,464 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 2,214 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using ull=unsigned long long;
map<ll, ull> dp;
int main()
{
    int n;
    ll k;
    cin>>n>>k;
    dp[k]=1;
    for(int i=1; i<=n; i++){
        map<ll, ull> ndp=dp;
        for(auto p:dp){
            if(p.first>=i) ndp[p.first/i]+=p.second;
        }
        swap(dp, ndp);
    }
    ull ans=0;
    for(auto p:dp) ans+=p.second;
    ans--;
    cout<<ans<<endl;
    return 0;
}
0