codeforces水题100道 第三题 Codeforces Beta Round #47 A. Domino piling (math)
题目链接:http://www.codeforces.com/problemset/problem/50/A
题意:一个NxM的举行中最多能放多少个1x2的矩形。
C++代码:
#include <iostream> using namespace std; int main() { int n, m; cin >> n >> m; cout << (n * m) / 2 << endl; return 0; }