結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | mamekin |
提出日時 | 2018-05-18 22:27:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
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 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#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; } }