結果
問題 | No.505 カードの数式2 |
ユーザー | olphe |
提出日時 | 2017-04-21 23:15:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 996 ms |
コンパイル使用メモリ | 108,320 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 17:41:26 |
合計ジャッジ時間 | 2,953 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 210 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 186 ms
5,376 KB |
testcase_27 | AC | 182 ms
5,376 KB |
testcase_28 | AC | 202 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#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; }