HDU 2524 矩形A + B

来源:互联网 发布:mac口红lustre系列色号 编辑:程序博客网 时间:2024/06/04 18:27

矩形A + B

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6161    Accepted Submission(s): 4757


Problem Description
给你一个高为n ,宽为m列的网格,计算出这个网格中有多少个矩形,下图为高为2,宽为4的网格.
 

Input
第一行输入一个t, 表示有t组数据,然后每行输入n,m,分别表示网格的高和宽 ( n < 100 , m < 100).
 

Output
每行输出网格中有多少个矩形.
 

Sample Input
21 22 4
 

Sample Output
3

30

AC代码:

#include<stdio.h>#include<string.h>int main(){int t,s=0,n,m;scanf("%d",&t);while(t--){     scanf("%d%d",&n,&m);     s=n*(n+1)*m*(m+1)/4;     printf("%d\n",s);}return 0; } 


0 0
原创粉丝点击