結果
問題 | No.1532 Different Products |
ユーザー | spipipike |
提出日時 | 2021-06-04 22:42:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,239 bytes |
コンパイル時間 | 2,155 ms |
コンパイル使用メモリ | 189,472 KB |
実行使用メモリ | 21,196 KB |
最終ジャッジ日時 | 2024-11-20 04:55:33 |
合計ジャッジ時間 | 20,012 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 90 ms
11,504 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 | 67 ms
10,608 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 93 ms
10,380 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 135 ms
12,204 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 48 ms
9,048 KB |
testcase_27 | AC | 165 ms
13,056 KB |
testcase_28 | AC | 130 ms
12,864 KB |
testcase_29 | AC | 110 ms
10,488 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 192 ms
14,312 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 71 ms
8,544 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | AC | 2 ms
5,248 KB |
testcase_62 | AC | 2 ms
5,248 KB |
testcase_63 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (n); i++) using namespace std; using ll = long long; using P = pair<ll,int>; int main(){ int n; ll k; cin>>n>>k; unordered_map<ll, int> ma, da; const int mid=30; ll ans; if(n<=mid){ ma[1]=1; for(int i=1; i<=n; i++){ vector<P> al; for(auto p : ma){ if((ll)i*p.first<=k) al.push_back(P((ll)i*p.first, p.second)); } for(P p : al) ma[p.first]+=p.second; } ll tot=0; for(auto p : ma) tot+=p.second; ans=tot-1; } else{ ma[1]=1; for(int i=1; i<=mid; i++){ vector<P> al; for(auto p : ma){ if((ll)i*p.first<=k) al.push_back(P((ll)i*p.first, p.second)); } for(P p : al) ma[p.first]+=p.second; } da[k]=1; for(int i=mid+1; i<=n; i++){ vector<P> al; for(auto p : da){ if(p.first/i>0) al.push_back(P(p.first/i, p.second)); } for(P p : al) da[p.first]+=p.second; } unordered_set<ll> kse; for(auto p : ma) kse.insert(p.first); for(auto p : da) kse.insert(p.first); vector<int> kl; for(int i : kse) kl.push_back(i); sort(kl.begin(), kl.end()); ll c=0, tot=0; for(int i : kl){ if(ma.count(i)) c+=ma[i]; if(da.count(i)) tot+=c*da[i]; } ans=tot-1; } cout<<ans<<endl; return 0; }