結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | hiro71687k |
提出日時 | 2023-04-04 06:51:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 596 bytes |
コンパイル時間 | 4,526 ms |
コンパイル使用メモリ | 264,188 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-25 08:59:10 |
合計ジャッジ時間 | 8,124 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,016 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#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; }