A34 - Game 3
https://atcoder.jp/contests/tessoku-book/tasks/tessoku_book_ah
提出
code: python
n, x, y = map(int, input().split())
a = list(map(int, input().split()))
# すべての山にある石の数が X 個未満
# 2 2 3
# 5 8
# 先攻 2, 8, 0, 5, 0, 0
# 後攻 0, 8, 0, 2