hdoj 4554 叛逆的小明

简介: printf("%d %d\n", a+b, a-b); }
//hdoj 4554
//2013-05-26-19.47
#include <stdio.h>
int turn(int x)
{
    int f = 1;
    if (x < 0)
    {
        x = -x;
        f = -1;
    }
    int s = 0;
    while (x)
    {
        s *= 10;
        s += x%10;
        x /= 10;
    }
    return s*f;
}
int main()
{
    int x, y;
    int t;
    scanf("%d", &t);
    while (t--)
    {
        scanf("%d %d", &x, &y);
        int a = (x+y)>>1;
        int b = x-a;
        a = turn(a);
        b = turn(b);
        printf("%d %d\n", a+b, a-b);
    }
    return 0;
}
目录
相关文章
hdoj 1907
这是一道博弈的题,准确说是尼姆博弈,只要判断各项的异或值即可。
42 0
|
算法
HDOJ 3466 Proud Merchants
HDOJ 3466 Proud Merchants
113 0
HDOJ 3466 Proud Merchants
HDOJ 2057 A + B Again
HDOJ 2057 A + B Again
112 0
HDOJ的题目分类
模拟题, 枚举 1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 ...
1836 0
|
Java
HDOJ 1715 大菲波数
Problem Description Fibonacci数列,定义如下: f(1)=f(2)=1 f(n)=f(n-1)+f(n-2) n>=3。 计算第n项Fibonacci数值。 Input 输入第一行为一个整数N,接下来N行为整数Pi(1
872 0
HDOJ 2056 Rectangles
Problem Description Given two rectangles and the coordinates of two points on the diagonals of each rectangle,you have to calculate the area of the intersected part of two rectangles.
1018 0