結果

問題 No.582 キャンディー・ボックス3
ユーザー roaris
提出日時 2019-07-26 12:21:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-02 06:25:30
合計ジャッジ時間 1,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = list(map(int, input().split()))
two = 0

for C_i in C:
    if C_i == 2:
        two += 1
        
    if C_i >= 3:
        print('B')
        exit()

if two >= 2:
    print('B')
    exit()

if (two == 1 and N % 2 == 0) or (two == 0 and N % 2 == 1):
    print('A')
else:
    print('B')
0