HDU 5630 Rikka with Chess

乍一看不简单,实际上不难,因为某些原因,,,没能赶上比赛,,在赛下第一时间就把题给补了。
本题推到4*4结果就显而易见了。
下面附上渣渣的Ac代码。

#include<stdio.h>
#include<math.h>
#include<algorithm>
using namespace std;

int main()
{
    int t,n,m;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d %d",&n,&m);
        printf("%d\n",n/2+m/2);
    }
    return 0;
}

你可能感兴趣的:(HDU 5630 Rikka with Chess)