/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 0ms 328.0 KiB

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:20
Judged At
2024-11-05 15:10:20
Judged By
Score
10
Total Time
0ms
Peak Memory
328.0 KiB