結果

問題 No.582 キャンディー・ボックス3
ユーザー FromBooskaFromBooska
提出日時 2023-09-25 13:46:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-07-18 10:49:17
合計ジャッジ時間 1,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,948 KB
testcase_01 AC 32 ms
53,084 KB
testcase_02 AC 33 ms
52,960 KB
testcase_03 AC 32 ms
51,900 KB
testcase_04 AC 32 ms
53,432 KB
testcase_05 AC 33 ms
52,264 KB
testcase_06 AC 34 ms
52,552 KB
testcase_07 AC 34 ms
52,392 KB
testcase_08 AC 35 ms
52,888 KB
testcase_09 AC 34 ms
52,420 KB
testcase_10 AC 33 ms
53,316 KB
testcase_11 AC 35 ms
52,444 KB
testcase_12 AC 34 ms
52,292 KB
testcase_13 AC 33 ms
52,908 KB
testcase_14 AC 34 ms
51,996 KB
testcase_15 AC 33 ms
51,820 KB
testcase_16 AC 31 ms
52,012 KB
testcase_17 AC 32 ms
52,628 KB
testcase_18 AC 31 ms
52,212 KB
testcase_19 AC 31 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# あれ、グランディ数で解けない、なんでだろう?
# A = [0, 1, 3]でダメだ
# Bが圧倒的に有利、Bが負けるのはどんな初期状態かを考える
# 1が奇数個だけ、または1が奇数個で2が1つ、だけか

N = int(input())
A = list(map(int, input().split()))
count_1 = 0
count_2 = 0
count_3above = 0
for a in A:
    if a == 1:
        count_1 += 1
    elif a == 2:
        count_2 += 1
    elif a >= 3:
        count_3above += 1
nonzero = count_1 + count_2 + count_3above
ans = 'B'
if count_1 == nonzero:
    if count_1%2 == 1:
        ans = 'A'
else:
    if count_2 == 1 and count_1 + count_2 == nonzero and count_1%2 == 1:
        ans = 'A'
print(ans)
#print('count_1', count_1, 'count_2', count_2, 'count_3above', count_3above, 'nonzero', nonzero)
0