結果

問題 No.582 キャンディー・ボックス3
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-18 21:05:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 190,996 KB
最終ジャッジ日時 2025-01-07 14:13:02
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int n;
    cin>>n;
    int one=0;
    int two=0;
    for (int i=0;i<n;i++) {
        int a;
        cin>>a;
        if (a>=3) {
            puts("B");
            return 0;
        }
        if (a==2) {
            two++;
            if (two>=2) {
                puts("B");
                return 0;
            }
        } else if (a==1) one++;
    }
    if (one&1) puts("A");
    else puts("B");
    return 0;
}
0