結果
問題 | No.10 +か×か |
ユーザー | NotationNap |
提出日時 | 2015-04-22 04:47:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 526 bytes |
コンパイル時間 | 1,885 ms |
コンパイル使用メモリ | 157,932 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-05 00:04:47 |
合計ジャッジ時間 | 2,065 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long Int; #define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i)) int N; int total; int A[15]; char ops[15]; void dfs(int d, int val) { if (d == N) { if (val == total) { throw 1; } return; } if (val > total) return; ops[d] = '+'; dfs(d + 1, val + A[d]); ops[d] = '*'; dfs(d + 1, val * A[d]); } int main() { cin >> N >> total; REP(i, N) cin >> A[i]; try { dfs(1, A[0]); } catch (int e) {} for (int i = 1; i < N; i++) cout << ops[i]; cout << endl; }