結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | ei1333333 |
提出日時 | 2018-05-18 22:28:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 680 bytes |
コンパイル時間 | 2,021 ms |
コンパイル使用メモリ | 201,712 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 06:47:53 |
合計ジャッジ時間 | 6,222 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using int64 = long long; const int INF = 1 << 30; int main() { int K; cin >> K; for(int N = 1; N <= 30; N++) { for(int k = 1; k <= 30; k++) { int64 dp1 = 1, dp2 = 0, dp3 = 0; vector< int > s(N, 0); for(int l = 0; l < k; l++) s[l] = 1; for(int l = 0; l < N; l++) { if(s[l] == 1) { dp3 += dp2; dp2 += dp1; } else { dp3 += dp3; dp2 += dp2; dp1 += dp1; } } if(dp3 == K) { cout << s.size() << endl; for(auto &x : s) cout << x << " "; cout << endl; return 0; } } } }