結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | mmn15277198 |
提出日時 | 2021-02-06 14:28:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 983 bytes |
コンパイル時間 | 665 ms |
コンパイル使用メモリ | 74,924 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 22:45:19 |
合計ジャッジ時間 | 1,733 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; using ll = long long; int main(){ ll k; cin >> k; vector<vector<ll>> a(35 , vector<ll>(35 , 0)); for(int i = 2; i < 35; i++){ a[i][0] = (ll)i * (i - 1) / 2; } for(int i = 2; i < 35; i++){ for(int j = 1; j < 35; j++){ a[i][j] = a[i][j - 1] * 2LL; } } vector<int> ans; int cnt_0 = 0 , cnt_1 = 0; for(int i = 2; i < 35; i++){ for(int j = 0; j < 35; j++){ if(a[i][j] == k){ cnt_0 = j; cnt_1 = i; //cout << cnt_0 << " : " << cnt_1 << endl; break; } } } cout << cnt_0 + cnt_1 << endl; for(int i = 0; i < cnt_0; i++){ cout << "0" << " "; } for(int i = 0; i < cnt_1; i++){ cout << "1"; if(i != cnt_1 - 1)cout << " "; else cout << endl; } return 0; }