UVa 10812 Beat the Spread! (陷阱)

来源:互联网 发布:mac svn客户端使用教程 编辑:程序博客网 时间:2024/06/05 13:21

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;}

原创粉丝点击