結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | mamekin |
提出日時 | 2018-05-18 22:27:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 930 ms |
コンパイル使用メモリ | 100,520 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-07 06:47:37 |
合計ジャッジ時間 | 3,562 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | |
other | AC * 9 TLE * 1 |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <array> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; int main() { int k; cin >> k; for(int x=2; ; ++x){ int tmp = x * (x - 1) / 2; if(k % tmp != 0) continue; tmp = k / tmp; int y = 0; while(tmp % 2 == 0){ tmp /= 2; ++ y; } if(tmp != 1 || x + y > 30) continue; cout << (x + y) << endl; cout << 1; for(int i=1; i<x; ++i) cout << ' ' << 1; for(int i=0; i<y; ++i) cout << ' ' << 0; cout << endl; return 0; } }