Accepted
Code
#include<stdio.h>
int main()
{
int H,W;
scanf("%d %d",&H,&W);
int k;
int ans=0;
if (H<=W)
{
k=H;
}
else
{
k=W;
}
for (int i=1; i<=k; i++)
{
int count;
count=(H-i+1)*(W-i+1);
ans=ans+count;
}
printf("%d",ans);
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1121 Square Counting Challenge
- Contest
- Brain Booster #7
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-11-05 15:11:15
- Judged At
- 2024-11-05 15:11:15
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 396.0 KiB