結果
問題 | No.688 E869120 and Constructing Array 2 |
ユーザー | Ai3Shota |
提出日時 | 2018-05-26 13:13:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 1,290 ms |
コンパイル使用メモリ | 158,176 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 14:08:59 |
合計ジャッジ時間 | 1,832 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 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 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define MAX 1073741823 using namespace std; int K; int num[31] = {0}; int dp[31][3]; int Combi(int n, int r){ if(n == r) return dp[n][r] = 1; if(r == 0) return dp[n][r] = 1; if(r == 1) return dp[n][r] = n; if(dp[n][r]) return dp[n][r]; return dp[n][r] = Combi(n - 1, r) + Combi(n - 1, r - 1); } int main(void){ cin >> K; if(K == 0) { cout << 1 << endl << 0 << endl; return 0; } for(int i = 0; i <= 30; ++i){ int p = pow(2, i); for(int j = 0; j <= 30; ++j){ int c = (j >= 2) ? Combi(j, 2) : 0; if(p * c == K){ cout << i + j << endl; for(int k = 0; k < i; ++k) cout << 0 << " "; for(int k = 0; k < j; ++k){ if(k) cout << " "; cout << 1; } cout << endl; return 0; } } } return 0; }