結果

問題 No.1532 Different Products
ユーザー HaaHaa
提出日時 2021-06-04 21:19:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,058 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 177,032 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 12:09:05
合計ジャッジ時間 124,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 180 ms
5,248 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 1 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 23 ms
5,248 KB
testcase_10 AC 164 ms
5,248 KB
testcase_11 AC 106 ms
5,248 KB
testcase_12 AC 883 ms
5,248 KB
testcase_13 AC 209 ms
5,248 KB
testcase_14 AC 3,218 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 415 ms
5,248 KB
testcase_17 AC 110 ms
5,248 KB
testcase_18 AC 58 ms
5,248 KB
testcase_19 AC 699 ms
5,248 KB
testcase_20 AC 2,905 ms
5,248 KB
testcase_21 AC 702 ms
5,248 KB
testcase_22 AC 270 ms
5,248 KB
testcase_23 AC 87 ms
5,248 KB
testcase_24 AC 2,525 ms
5,248 KB
testcase_25 AC 897 ms
5,248 KB
testcase_26 AC 27 ms
5,248 KB
testcase_27 AC 1,175 ms
5,248 KB
testcase_28 AC 542 ms
5,248 KB
testcase_29 AC 750 ms
5,248 KB
testcase_30 AC 1,873 ms
5,248 KB
testcase_31 AC 1,861 ms
5,248 KB
testcase_32 AC 2,214 ms
5,248 KB
testcase_33 AC 1,544 ms
5,248 KB
testcase_34 AC 2,613 ms
5,248 KB
testcase_35 AC 2,165 ms
5,248 KB
testcase_36 AC 2,741 ms
5,248 KB
testcase_37 AC 356 ms
5,248 KB
testcase_38 AC 2,825 ms
5,248 KB
testcase_39 AC 2,445 ms
5,248 KB
testcase_40 AC 2,488 ms
5,248 KB
testcase_41 AC 3,785 ms
5,248 KB
testcase_42 AC 3,291 ms
5,248 KB
testcase_43 AC 3,456 ms
5,248 KB
testcase_44 AC 3,984 ms
5,248 KB
testcase_45 AC 3,998 ms
5,248 KB
testcase_46 AC 3,872 ms
5,248 KB
testcase_47 TLE -
testcase_48 AC 3,945 ms
5,248 KB
testcase_49 TLE -
testcase_50 AC 3,976 ms
5,248 KB
testcase_51 TLE -
testcase_52 AC 3,945 ms
5,248 KB
testcase_53 TLE -
testcase_54 AC 3,910 ms
5,248 KB
testcase_55 TLE -
testcase_56 AC 3,865 ms
5,248 KB
testcase_57 AC 3,890 ms
5,248 KB
testcase_58 TLE -
testcase_59 AC 3,748 ms
5,248 KB
testcase_60 TLE -
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    ll n, k; cin >> n >> k;
    unordered_map<ll,ll> mp; mp[1]=1;
    ll ans=0;
    for(ll i=1;i<=n;i++){
        unordered_map<ll,ll> nxmp;
        for(auto p:mp){
            if(p.first*i*(i+1)*(i+2)<=k){
                nxmp[p.first]+=p.second;
                nxmp[p.first*i]+=p.second;
            }
            else{
                ans+=p.second;
                for(ll j=i;j<=n;j++){
                    if(p.first*j<=k)
                        ans+=p.second;
                }
                for(ll j=i;j<=n;j++)for(ll l=j+1;l<=n;l++){
                    if(p.first*j*l<=k)
                        ans+=p.second;
                }
            }
        }
        mp=nxmp;
    }
    for(auto p:mp){
        ans+=p.second;
    }
    cout << ans-1 << endl;
    return 0;
}
0