Accepted
Code
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
ll a,b; cin>>a>>b;
ll mn = min(a,b);
ll mx = max(a,b);
ll sum=0, ans=0;
for(ll i=mn; i>=1; i--){
ans += (i*mx);
//cout<<ans<<endl;
mx--;
}
cout << ans << endl;
return 0;
}
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 16:11:49
- Judged At
- 2024-11-05 16:11:49
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 764.0 KiB