結果
問題 | No.1532 Different Products |
ユーザー | inksamurai |
提出日時 | 2021-06-05 06:25:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,742 bytes |
コンパイル時間 | 1,277 ms |
コンパイル使用メモリ | 123,148 KB |
実行使用メモリ | 180,308 KB |
最終ジャッジ日時 | 2024-11-20 22:40:05 |
合計ジャッジ時間 | 261,234 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 2 ms
10,624 KB |
testcase_03 | AC | 2 ms
10,624 KB |
testcase_04 | AC | 2 ms
10,624 KB |
testcase_05 | AC | 2 ms
10,624 KB |
testcase_06 | AC | 2 ms
10,624 KB |
testcase_07 | AC | 4 ms
10,624 KB |
testcase_08 | AC | 7 ms
10,624 KB |
testcase_09 | AC | 644 ms
28,720 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 1,492 ms
36,952 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | TLE | - |
testcase_55 | TLE | - |
testcase_56 | TLE | - |
testcase_57 | TLE | - |
testcase_58 | TLE | - |
testcase_59 | TLE | - |
testcase_60 | TLE | - |
testcase_61 | WA | - |
testcase_62 | AC | 2 ms
5,248 KB |
testcase_63 | TLE | - |
ソースコード
#include <cmath> #include <deque> #include <algorithm> #include <iterator> #include <list> #include <tuple> #include <map> #include <unordered_map> #include <queue> #include <set> #include <unordered_set> #include <stack> #include <string> #include <vector> #include <fstream> #include <iostream> #include <functional> #include <numeric> #include <iomanip> #include <stdio.h> //eolibraries #define lnf 3999999999999999999 #define inf 999999999 #define PI 3.14159265359 #define endl "\n" #define fi first #define se second #define pb push_back #define eb emplace_back #define ll long long #define all(c) (c).begin(),(c).end() #define sz(c) (int)(c).size() #define mkp(a,b) make_pair(a,b) #define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end()) #define rsz(a,n) a.resize(n) #define pii pair <int,int> #define rep(i,n) for(int i = 0 ; i < n ; i++) #define drep(i,n) for(int i = n-1 ; i >= 0 ; i--) #define crep(i,x,n) for(int i = x ; i < n ; i++) #define vi vector <int> #define vec(s) vector<s> #define rsz(a,n) a.resize(n) #define rszv(a,n,v) a.resize(n,v) #define fcin ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0); //eodefine const int max_n = 103002; using namespace std; ll n,k; int main(){ fcin; cin>>n>>k; unordered_map <ll,ll> mp; set <ll> st; ll ans=0; vi dlep; vec(pii) inep; crep(a,2,n+1) { dlep.clear(); inep.clear(); for(auto x : st) { if(x*a > k) dlep.pb(x); else inep.pb({x*a,mp[x]}); } inep.pb({a,1}); for(auto x : dlep) { st.erase(st.find(x)); ans += mp[x]; mp[x]=0; } for(auto p : inep) { st.insert(p.fi); mp[p.fi]+=p.se; } } for(auto x : st) { ans += mp[x]; } cout<<ans*2+1<<"\n"; /* */ return 0; }