結果

問題 No.505 カードの数式2
ユーザー olpheolphe
提出日時 2017-04-21 23:15:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 854 ms
コンパイル使用メモリ 107,740 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-27 23:17:23
合計ジャッジ時間 3,069 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 187 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 WA -
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
4,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 165 ms
4,380 KB
testcase_27 AC 165 ms
4,380 KB
testcase_28 AC 184 ms
4,376 KB
testcase_29 AC 1 ms
4,380 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "math.h"
#include "utility"
#include "string"
#include "map"
#include "unordered_map"
#include "iomanip"
#include "random"

using namespace std;
const long long int MOD = 1000000007;

int N;
int num[16];
long long int ans = LLONG_MIN;

void Search(int n, long long int box, int end) {
	if (n == end) {
		ans = max(ans, box);
		return;
	}
	if ((num[n + 1] > 0 && box >= 0) || (num[n + 1] < 0 && box <= 0))Search(n + 1, box + num[n + 1], end);
	Search(n + 1, box * num[n + 1], end);
	if ((num[n + 1] > 0 && box <= 0) || (num[n + 1] < 0 && box >= 0))Search(n + 1, box - num[n + 1], end);
	if (num[n + 1] != 0)Search(n + 1, box / num[n + 1], end);
}

int main() {
	cin >> N;
	for (int i = 0; i < N; i++)cin >> num[i];
	Search(0, num[0], N - 1);
	cout << ans << endl;
	return 0;
}
0