Codeforces Round #159 (Div. 2) B. Playing Cubes

제목:http://codeforces.com/contest/257/problem/B
사고방식: 규칙 을 찾다.
#include 
using namespace std;

int main()
{
    int n,m;
    int p,v;
    cin >> n >> m;
    if(n>m)
    {
        int t;
        t=n;
        n=m;
        m=t;
    }
    p=m-1;
    v=n;
    cout << p<<" "<<v;
    return 0;
}

 
다음으로 전송:https://www.cnblogs.com/danielqiu/archive/2013/01/17/2864452.html

좋은 웹페이지 즐겨찾기