結果

問題 No.582 キャンディー・ボックス3
ユーザー hedwig100
提出日時 2020-05-19 16:00:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 22:51:44
合計ジャッジ時間 1,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = list(map(int,input().split()))
if N == 1:
    if C[0] == 1:
        print('A')
    else:
        print('B')
else:
    x = C.count(1)
    y = C.count(2)
    z = C.count(0)
    N -= z
    if (x + y == N and y == 1 and N%2 == 0) or (x + y == N and y == 0 and N%2 == 1):
        print('A')
    else:
        print('B')
0