結果

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

ソースコード

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)
    if x + y == N and y == 1:
        print('A')
    else:
        print('B')
0