結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 82 ms
5,576 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 25 ms
5,376 KB
testcase_10 AC 112 ms
6,076 KB
testcase_11 AC 80 ms
5,716 KB
testcase_12 AC 262 ms
8,084 KB
testcase_13 AC 136 ms
7,692 KB
testcase_14 AC 391 ms
9,244 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 96 ms
5,376 KB
testcase_17 AC 80 ms
5,852 KB
testcase_18 AC 54 ms
5,800 KB
testcase_19 AC 251 ms
8,176 KB
testcase_20 AC 410 ms
9,324 KB
testcase_21 AC 144 ms
6,104 KB
testcase_22 AC 160 ms
7,556 KB
testcase_23 AC 73 ms
6,044 KB
testcase_24 AC 370 ms
8,956 KB
testcase_25 AC 217 ms
7,644 KB
testcase_26 AC 28 ms
5,376 KB
testcase_27 AC 188 ms
6,624 KB
testcase_28 AC 137 ms
6,104 KB
testcase_29 AC 133 ms
5,712 KB
testcase_30 AC 244 ms
7,660 KB
testcase_31 AC 260 ms
7,680 KB
testcase_32 AC 283 ms
8,196 KB
testcase_33 AC 231 ms
7,544 KB
testcase_34 AC 359 ms
8,828 KB
testcase_35 AC 288 ms
7,948 KB
testcase_36 AC 346 ms
8,580 KB
testcase_37 AC 90 ms
5,376 KB
testcase_38 AC 383 ms
8,924 KB
testcase_39 AC 315 ms
8,492 KB
testcase_40 AC 332 ms
8,560 KB
testcase_41 AC 497 ms
9,808 KB
testcase_42 AC 421 ms
9,464 KB
testcase_43 AC 443 ms
9,740 KB
testcase_44 AC 487 ms
12,036 KB
testcase_45 AC 491 ms
11,760 KB
testcase_46 AC 483 ms
9,852 KB
testcase_47 AC 501 ms
11,776 KB
testcase_48 AC 486 ms
11,880 KB
testcase_49 AC 494 ms
11,900 KB
testcase_50 AC 472 ms
11,912 KB
testcase_51 AC 500 ms
11,884 KB
testcase_52 AC 483 ms
11,896 KB
testcase_53 AC 506 ms
12,028 KB
testcase_54 AC 502 ms
11,900 KB
testcase_55 AC 498 ms
11,900 KB
testcase_56 AC 476 ms
9,844 KB
testcase_57 AC 482 ms
9,960 KB
testcase_58 AC 485 ms
11,892 KB
testcase_59 AC 465 ms
9,700 KB
testcase_60 AC 501 ms
11,916 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 495 ms
11,896 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