码迷,mamicode.com
首页 > 其他好文 > 详细

思维题 URAL 1409 Two Gangsters

时间:2015-07-18 18:15:05      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

 

题目传送门

 1 /*
 2     思维题:注意题目一句话:At some moment it happened so that they shot one and the same can.
 3             如果两个人都有射中的话,肯定一个can同时被打中 
 4 */
 5 #include <bits/stdc++.h>
 6 using namespace std;
 7 
 8 int main(void)      //URAL 1409 Two Gangsters
 9 {
10     int a, b;
11     while (cin >> a >> b)
12     {
13         if (a && b) cout << b - 1 << " " << a - 1 << endl;
14         else    cout << b << " " << a << endl;
15     }
16 
17     return 0;
18 }

 

思维题 URAL 1409 Two Gangsters

标签:

原文地址:http://www.cnblogs.com/Running-Time/p/4657171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!