A33 - Game 2
提出
code: python
n = int(input())
a = list(map(int, input().split()))
# すべての山にある石の数が X 個未満
# 7 7
# 両者が最善を尽くす
解答
code: python
# 入力
N = int(input())
A = list(map(int, input().split()))
# 全部 XOR した値(ニム和)を求める
for i in range(1,N):
if XOR_Sum >= 1:
print("First")
else:
print("Second")