結果

問題 No.2081 Make a Test Case of GCD Subset
ユーザー umezoumezo
提出日時 2022-09-25 22:59:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,066 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 212,944 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-01 23:48:06
合計ジャッジ時間 7,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 15 ms
5,376 KB
testcase_25 AC 16 ms
5,376 KB
testcase_26 AC 16 ms
5,376 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

bool isPrime(ll x){
  if(x<2) return false;
  else if(x==2) return true;
  if(x%2==0) return false;
  for(ll i=3;i*i<=x;i+=2){
    if(x%i==0) return false;
  }
  return true;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  vector<ll> C;
  for(int i=2;i<100000;i++){
    if(isPrime(i)) C.push_back(i);
  }
  
  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;
}
0