結果

問題 No.582 キャンディー・ボックス3
ユーザー hiyokko2hiyokko2
提出日時 2017-10-27 23:13:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 4,421 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-14 13:20:03
合計ジャッジ時間 1,529 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string.h>
#include <stack>
#include <queue>
#include <algorithm>
#include <climits>
#include <cmath>
#include <map>
#include <set>
#include <assert.h>
#include <sstream>
#define REP(i,n) for(ll i=0;i<(n);i++)
#define MOD 1000000007
#define int long long
#ifdef int
const long long INF = LLONG_MAX / 10;
#else
const int INF = 1010101010;
#endif
using namespace std;
typedef long long ll;
typedef vector<vector<ll>> mat;
typedef pair<int, int> P;
//typedef pair<double, double> P;

#ifdef LOCAL
#define dump(...)                                         \
    do {                                                  \
        std::ostringstream os;                            \
        os << __LINE__ << ":\t" << #__VA_ARGS__ << " = "; \
        print_to(os, ", ", "\n", __VA_ARGS__);            \
        std::cerr << os.str();                            \
    } while (0)
#define dump_(a)                                          \
    do {                                                  \
        std::ostringstream os;                            \
        os << __LINE__ << ":\t" << #a << " = [";          \
        print_to_(os, ", ", "]\n", all(a));               \
        std::cerr << os.str();                            \
    } while (0)
#else
#define dump(...)
#define dump_(...)
#endif

template <typename T>
void print_to(std::ostream &os, const char *, const char *tail, const T &fst) {
    os << fst << tail;
}
template <typename Fst, typename... Rst>
void print_to(std::ostream &os, const char *del, const char *tail, const Fst &fst, const Rst &... rst) {
    os << fst << del;
    print_to(os, del, tail, rst...);
}
template <typename Iter>
void print_to_(std::ostream &os, const char *del, const char *tail, Iter bgn, Iter end) {
    for (Iter it = bgn; it != end;) {
        os << *it;
        if (++it != end) {
            os << del;
        } else {
            os << tail;
        }
    }
}
template <typename Fst, typename... Rst>
void println(const Fst &fst, const Rst &... rst) {
    print_to(std::cout, "\n", "\n", fst, rst...);
}
template <typename Fst, typename... Rst>
void print(const Fst &fst, const Rst &... rst) {
    print_to(std::cout, " ", "\n", fst, rst...);
}
template <typename Iter>
void println_(Iter bgn, Iter end) {
    print_to_(std::cout, "\n", "\n", bgn, end);
}
template <typename Iter>
void print_(Iter bgn, Iter end) {
    print_to_(std::cout, " ", "\n", bgn, end);
}

// const int MOD = 1000000007;
namespace trush {
    int _ = (std::cout.precision(10), std::cout.setf(std::ios::fixed), std::cin.tie(0),
             std::ios::sync_with_stdio(0), 0);
}

int NN;
int CC[200];
int C[200];

signed main()
{
    cin >> NN;
    int sum = 0;
    REP(i,NN) {
        cin >> CC[i];
        sum += C[i];
    }
    int N = 0;
    int up2 = 0;
    REP(i,NN) {
        if (CC[i] != 0) {
            if (CC[i] >= 2) up2++;
            C[N++] = CC[i];
        }
    }

    if (N == 0) {
        cout << "B" << endl;
        return 0;
    }

    if (N == 1) {
        if (C[0] == 1) {
            cout << "A" << endl;
            return 0;
        } else {
            cout << "B" << endl;
            return 0;
        }
    } else if (N == 2) {
        if (C[0] == 1 && C[1] == 1) {
            cout << "B" << endl;
            return 0;
        } else if (C[0] == 1 && C[1] == 2) {
            cout << "A" << endl;
            return 0;
        } else if (C[0] == 2 && C[1] == 1) {
            cout << "A" << endl;
            return 0;
        } else {
            cout << "B" << endl;
            return 0;
        }
    } else {
        if (*max_element(C, C + N) >= 3) {
            //assert(false);
            /*
            if (up2 == 1) {
                if (N % 2 == 0) {
                    cout << "A" << endl;
                    return 0;
                }
            }
            */
            cout << "B" << endl;
            return 0;
        } else if (up2 >= 2) {
            cout << "B" << endl;
            return 0;
        } else if (up2 == 1) {
            if (N % 2 == 0) {
                cout << "A" << endl;
                return 0;
            } else {
                cout << "B" << endl;
                return 0;
            }
        } else {
            if (N % 2 == 0) {
                cout << "B" << endl;
            } else {
                cout << "A" << endl;
            }
        }
    }
}
0