結果

問題 No.1532 Different Products
ユーザー asaringoasaringo
提出日時 2021-06-05 15:13:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 635 ms / 4,000 ms
コード長 584 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 177,560 KB
実行使用メモリ 12,036 KB
最終ジャッジ日時 2024-11-21 13:05:48
合計ジャッジ時間 22,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 92 ms
5,572 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 28 ms
5,248 KB
testcase_10 AC 117 ms
6,076 KB
testcase_11 AC 89 ms
5,716 KB
testcase_12 AC 284 ms
8,080 KB
testcase_13 AC 148 ms
7,564 KB
testcase_14 AC 448 ms
9,372 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 107 ms
5,460 KB
testcase_17 AC 91 ms
5,848 KB
testcase_18 AC 62 ms
5,796 KB
testcase_19 AC 275 ms
8,176 KB
testcase_20 AC 461 ms
9,452 KB
testcase_21 AC 148 ms
5,980 KB
testcase_22 AC 174 ms
7,680 KB
testcase_23 AC 81 ms
6,172 KB
testcase_24 AC 416 ms
9,084 KB
testcase_25 AC 232 ms
7,644 KB
testcase_26 AC 30 ms
5,248 KB
testcase_27 AC 202 ms
6,496 KB
testcase_28 AC 157 ms
6,108 KB
testcase_29 AC 148 ms
5,588 KB
testcase_30 AC 270 ms
7,660 KB
testcase_31 AC 277 ms
7,560 KB
testcase_32 AC 322 ms
8,064 KB
testcase_33 AC 239 ms
7,560 KB
testcase_34 AC 385 ms
8,832 KB
testcase_35 AC 312 ms
7,948 KB
testcase_36 AC 374 ms
8,708 KB
testcase_37 AC 92 ms
5,248 KB
testcase_38 AC 401 ms
8,928 KB
testcase_39 AC 358 ms
8,428 KB
testcase_40 AC 369 ms
8,564 KB
testcase_41 AC 549 ms
9,820 KB
testcase_42 AC 472 ms
9,336 KB
testcase_43 AC 500 ms
9,608 KB
testcase_44 AC 553 ms
11,912 KB
testcase_45 AC 573 ms
11,880 KB
testcase_46 AC 554 ms
9,856 KB
testcase_47 AC 558 ms
11,900 KB
testcase_48 AC 635 ms
11,884 KB
testcase_49 AC 560 ms
12,036 KB
testcase_50 AC 557 ms
11,948 KB
testcase_51 AC 545 ms
12,012 KB
testcase_52 AC 539 ms
12,024 KB
testcase_53 AC 557 ms
12,028 KB
testcase_54 AC 529 ms
12,024 KB
testcase_55 AC 543 ms
11,896 KB
testcase_56 AC 518 ms
9,984 KB
testcase_57 AC 516 ms
9,960 KB
testcase_58 AC 549 ms
11,896 KB
testcase_59 AC 513 ms
9,708 KB
testcase_60 AC 575 ms
11,916 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 550 ms
11,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;
typedef long long ll ;
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)

int main() {
    ll n, k ;
    cin >> n >> k ;
    unordered_map<ll, ll> dp ;
    dp[k] = 1 ;
    for(int i = n ; i > 0 ; i--)
        for (auto it : unordered_map<ll, ll>(dp)){
            ll x = it.first , y = it.second ;
            if (x >= i) dp[x/i] += y ;
        }
    ll ans = -1 ;
    for (auto it : dp){
        ll x = it.first , y = it.second ; 
        if (x) ans += y ;
    }
    cout << ans << endl ;
}
0