Code
#include <stdio.h>
int main()
{
int a,b,c,d,x=0;
scanf("%d%d",&a,&b);
d=a<b?a:b;
for(c=1;c<=d;c++){
x=x+(a-c+1)*(b-c+1);
}
printf("%d\n",x);
}
Information
- Submit By
- Type
- Pretest
- Problem
- P1121 Square Counting Challenge
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-11-05 15:10:16
- Judged At
- 2024-11-05 15:10:16
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 284.0 KiB