結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | 🍮かんプリン |
提出日時 | 2019-03-07 11:26:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 885 bytes |
コンパイル時間 | 436 ms |
コンパイル使用メモリ | 56,712 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 14:47:35 |
合計ジャッジ時間 | 1,143 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,948 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> using namespace std; int main(){ int K,c_0,c_1; cin >> K; for(c_0 = 0; c_0 == 0 || K % (1 << (c_0 - 1)) == 0; c_0++) { if (c_0 == 0) { for(c_1 = 0; c_1 * (c_1 - 1) < K * 2; c_1++) {} if (c_1 * (c_1 - 1) == K * 2) { break; } } else { for (c_1 = 0; c_1 * (c_1 - 1) < K / (1 << (c_0 - 1)); c_1++) {} if (c_1 * (c_1 - 1) == K / (1 << (c_0 - 1))) { if (c_0 + c_1 <= 30) break; } } } cout << (c_0 + c_1 == 0 ? 1 : c_0 + c_1) << endl; if (c_0 + c_1 == 0) { cout << 0; } else { for(int i = 0; i < c_0; i++) { cout << 0 << " "; } for(int i = 0; i < c_1; i++) { cout << 1 << " "; } } cout << endl; return 0; }