結果

問題 No.582 キャンディー・ボックス3
ユーザー 12354865271235486527
提出日時 2020-01-10 07:15:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-23 21:40:22
合計ジャッジ時間 1,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

_ = int(input())
cb = list(map(int, input().split()))
cc = Counter(cb)
cc.pop(0, None)
c1, c2 = cc.pop(1, 0), cc.pop(2, 0)
if c1 & 1 == 0 or c2 > 1 or len(cc):
    print('B')
else:
    print('A')
0