Accepted
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
int x = min(a, b);
long long c= 0;
for(int i=1; i<=x; ++i){
c+= (a-i+1)*(b-i+1);
}
cout <<c<< endl;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1121 Square Counting Challenge
- Contest
- Brain Booster #7
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-11-05 15:27:34
- Judged At
- 2024-11-05 15:27:34
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 768.0 KiB