本文主要是介绍UVa 10812 Beat the Spread! (陷阱),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
10812 - Beat the Spread!
Time limit: 3.000 seconds
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1753
蛋碎了,被水题坑到了。。
完整代码:
/*0.018s*/#include<cstdio>int main()
{int t, s, d;scanf("%d", &t);while (t--){scanf("%d%d", &s, &d);if (s < d || (s + d) & 1) puts("impossible");else printf("%d %d\n", (s + d) >> 1, (s - d) >> 1);}return 0;
}
这篇关于UVa 10812 Beat the Spread! (陷阱)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!