結果

問題 No.2081 Make a Test Case of GCD Subset
ユーザー RubikunRubikun
提出日時 2024-07-11 05:10:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,619 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 204,912 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-07-11 05:10:21
合計ジャッジ時間 6,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

vector<int> prime;//i番目の素数
bool is_prime[MAX+1];

void sieve(int n){
    for(int i=0;i<=n;i++){
        is_prime[i]=true;
    }
    
    is_prime[0]=is_prime[1]=false;
    
    for(int i=2;i<=n;i++){
        if(is_prime[i]){
            prime.push_back(i);
            for(int j=2*i;j<=n;j+=i){
                is_prime[j] = false;
            }
        }
    }
}


int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    sieve(100000);
    
    ll M;cin>>M;
    vector<ll> ans;
    
    ll id=0,z=0;
    ll MM=M;
    while(MM){
        for(ll t=33;t>=0;t--){
            if((1LL<<t)-1<=MM){
                z+=t;
                MM-=((1LL<<t)-1);
            }
        }
    }
    z--;
    while(M){
        for(ll t=33;t>=0;t--){
            if((1LL<<t)-1<=M){
                ans.push_back(prime[id]);
                for(ll k=1;k<t;k++) ans.push_back(prime[id]*prime[z--]);
                M-=((1LL<<t)-1);
                id++;
            }
        }
    }
    
    cout<<si(ans)<<"\n";
    for(int i=0;i<si(ans);i++){
        if(i) cout<<" ";
        cout<<ans[i];
    }
    cout<<"\n";
}

0