結果
問題 | No.2081 Make a Test Case of GCD Subset |
ユーザー | umezo |
提出日時 | 2022-09-25 22:50:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 2,060 ms |
コンパイル使用メモリ | 211,736 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 23:45:12 |
合計ジャッジ時間 | 7,291 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | RE | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; int C[]={2,3,5,7,11,13,17,19,23,29,31,37,41,43,47}; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll m; cin>>m; priority_queue<pair<ll,ll>> que; ll t=2; ll now=1; while(t<1e5){ que.push({t-1,now}); t*=2; now++; } queue<ll> que2; while(m>0){ while(que.top().first>m) que.pop(); que2.push(que.top().second); m-=que.top().first; } vector<ll> ANS; int nx=0; while(que2.size()){ ll a=que2.front(); que2.pop(); ll c=C[nx]; rep(i,a){ ANS.push_back(c); c*=C[nx]; } nx++; } int y=ANS.size(); cout<<y<<endl; rep(i,y){ if(i) cout<<" "; cout<<ANS[i]; } cout<<endl; return 0; }