結果

問題 No.582 キャンディー・ボックス3
ユーザー lloyzlloyz
提出日時 2022-12-18 00:33:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-17 08:51:04
合計ジャッジ時間 1,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
C = list(map(int, input().split()))

Counter = [0, 0, 0]
for i in range(n):
    if C[i] == 0:
        continue
    elif C[i] == 1:
        Counter[0] += 1
    elif C[i] == 2:
        Counter[1] += 1
    else:
        Counter[2] += 1
if Counter[2] > 0:
    print("B")
elif Counter[1] <= 1 and Counter[0] % 2 == 1:
    print("A")
else:
    print("B")
0