解题思路:因为爱丽丝先手,所以当N为偶数时,爱丽丝必赢 class Solution { public: bool divisorGame(int n) { return n%2==0; } }; 运行结果: