結果

問題 No.1532 Different Products
ユーザー chocoruskchocorusk
提出日時 2021-06-04 20:06:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,701 ms / 4,000 ms
コード長 979 bytes
コンパイル時間 4,133 ms
コンパイル使用メモリ 198,260 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-11-19 08:03:39
合計ジャッジ時間 81,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 205 ms
6,528 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 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 37 ms
5,504 KB
testcase_10 AC 210 ms
7,680 KB
testcase_11 AC 152 ms
7,168 KB
testcase_12 AC 728 ms
10,496 KB
testcase_13 AC 253 ms
9,472 KB
testcase_14 AC 1,852 ms
12,800 KB
testcase_15 AC 5 ms
5,248 KB
testcase_16 AC 326 ms
6,656 KB
testcase_17 AC 157 ms
7,424 KB
testcase_18 AC 86 ms
6,912 KB
testcase_19 AC 630 ms
10,624 KB
testcase_20 AC 1,866 ms
13,056 KB
testcase_21 AC 491 ms
7,296 KB
testcase_22 AC 316 ms
9,088 KB
testcase_23 AC 120 ms
7,808 KB
testcase_24 AC 1,649 ms
12,672 KB
testcase_25 AC 698 ms
9,600 KB
testcase_26 AC 52 ms
5,248 KB
testcase_27 AC 677 ms
8,192 KB
testcase_28 AC 417 ms
7,808 KB
testcase_29 AC 444 ms
6,656 KB
testcase_30 AC 958 ms
9,472 KB
testcase_31 AC 980 ms
9,600 KB
testcase_32 AC 1,158 ms
10,496 KB
testcase_33 AC 841 ms
9,088 KB
testcase_34 AC 1,583 ms
11,776 KB
testcase_35 AC 1,475 ms
10,368 KB
testcase_36 AC 1,548 ms
11,520 KB
testcase_37 AC 243 ms
5,376 KB
testcase_38 AC 1,646 ms
12,032 KB
testcase_39 AC 1,328 ms
11,136 KB
testcase_40 AC 1,621 ms
11,264 KB
testcase_41 AC 2,419 ms
14,080 KB
testcase_42 AC 2,086 ms
12,928 KB
testcase_43 AC 2,090 ms
13,568 KB
testcase_44 AC 2,395 ms
14,080 KB
testcase_45 AC 2,490 ms
14,208 KB
testcase_46 AC 2,408 ms
13,952 KB
testcase_47 AC 2,462 ms
14,336 KB
testcase_48 AC 2,527 ms
14,208 KB
testcase_49 AC 2,540 ms
14,208 KB
testcase_50 AC 2,450 ms
14,336 KB
testcase_51 AC 2,640 ms
14,336 KB
testcase_52 AC 2,429 ms
14,208 KB
testcase_53 AC 2,583 ms
14,336 KB
testcase_54 AC 2,394 ms
14,208 KB
testcase_55 AC 2,701 ms
14,464 KB
testcase_56 AC 2,451 ms
14,080 KB
testcase_57 AC 2,371 ms
14,080 KB
testcase_58 AC 2,552 ms
14,208 KB
testcase_59 AC 2,367 ms
13,696 KB
testcase_60 AC 2,626 ms
14,464 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2,497 ms
14,208 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