代码很简单,试了各种输入的方法还是50分,求大佬帮忙看看。

P1200 [USACO1.1] 你的飞碟在这儿 Your Ride Is Here

>@[laeey02048](/user/292002) 你的Go...... ```cpp cout << (Sum(a) == Sum(b) ? "Go" : "STAY") << endl; ``` 应该改为 ```cpp cout << (Sum(a) == Sum(b) ? "GO" : "STAY") << endl; ```
by cstdios @ 2019-11-29 12:04:44


@[cstdios](/user/260980) 太感谢了,这个小问题居然浪费了我这么多时间...
by laeey02048 @ 2019-11-29 14:28:15


|