結果

問題 No.688 E869120 and Constructing Array 2
ユーザー hiro71687k
提出日時 2023-04-04 06:51:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 4,035 ms
コンパイル使用メモリ 251,772 KB
最終ジャッジ日時 2025-02-11 22:49:02
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 2 WA * 7 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=144499999994;
ll mod=1000000007;
int main(){
    ll k;
    cin >> k;
    ll x=0;
    while (k%2==0)
    {
        k/=2;
        x+=1;
    }
    vector<ll>a={1,1};
    for (ll i = 0; i < x; i++)
    {
        a.push_back(0);
    }
    for (ll i = 0; i < k-2; i++)
    {
        a.push_back(1);
    }
    cout << a.size() << endl;
    for (ll i = 0; i < a.size(); i++)
    {
        cout << a[i] << ' ';
    }
    cout << endl;
}
0