結果

問題 No.582 キャンディー・ボックス3
ユーザー FromBooskaFromBooska
提出日時 2023-03-17 08:37:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2024-09-18 09:50:40
合計ジャッジ時間 1,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,316 KB
testcase_01 WA -
testcase_02 AC 35 ms
52,452 KB
testcase_03 AC 33 ms
53,276 KB
testcase_04 AC 34 ms
52,368 KB
testcase_05 AC 34 ms
52,824 KB
testcase_06 AC 36 ms
53,096 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,528 KB
testcase_09 AC 35 ms
52,248 KB
testcase_10 AC 33 ms
52,572 KB
testcase_11 AC 35 ms
52,404 KB
testcase_12 AC 33 ms
52,196 KB
testcase_13 AC 33 ms
52,488 KB
testcase_14 AC 37 ms
52,216 KB
testcase_15 AC 35 ms
53,264 KB
testcase_16 AC 39 ms
53,364 KB
testcase_17 WA -
testcase_18 AC 35 ms
52,120 KB
testcase_19 AC 37 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Grundy数でダメだった、確かに[1, 3]はGrundy数だと勝てるはずだけど負ける
# 先攻が勝てるのは手番で[1]または手番が終わって[1, 1]
# そうなるのは1が奇数個と2が1個だけか

N = int(input())
C = list(map(int, input().split()))
one_count = 0
two_or_more_count = 0
for i in range(N):
    if C[i] == 1:
        one_count += 1
    elif C[i] > 1:
        two_or_more_count += 1
if one_count%2 == 1 and two_or_more_count == 0:
    print('A')
elif one_count%2 == 1 and two_or_more_count == 1:
    print('A')
else:
    print('B')
    
0