結果
問題 | No.10 +か×か |
ユーザー | tsukio |
提出日時 | 2016-03-17 10:23:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 11 ms / 5,000 ms |
コード長 | 653 bytes |
コンパイル時間 | 490 ms |
コンパイル使用メモリ | 55,768 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-05-08 11:51:09 |
合計ジャッジ時間 | 988 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 8 ms
5,888 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 11 ms
6,016 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> using namespace std; int n; int t; int nums[50]; char op[50]; bool visited[50][100001]; void Calc(int current, int value) { if (value > t) return; if (current == n) { if (value < t) return; op[n - 1] = '\0'; cout << string(op) << endl; exit(0); } if (visited[current][value]) return; visited[current][value] = true; int op_index = current - 1; op[op_index] = '+'; Calc(current + 1, value + nums[current]); op[op_index] = '*'; Calc(current + 1, value * nums[current]); } int main() { cin >> n >> t; for (int i = 0; i < n; i++) { cin >> nums[i]; } Calc(1, nums[0]); return 0; }