标签:
题意:m*n的地板最多能铺多少2*1的地板砖,不能重复。。。
水题。。
上代码。。。
#include <iostream>
#include <stdio.h>
using namespace std;
int main(void)
{
int m, n;
cin >> m >> n;
int ans=(m/2)*n+(m%2)*n/2;
cout << ans << endl;
return 0;
}
标签:
原文地址:http://www.cnblogs.com/geloutingyu/p/5734085.html