Accepted
Code
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main() {
ll n, m, ans = 0;
cin >> n >> m;
ll mn = min(n, m);
ll mx = max(n, m);
for (int i = 1; i <= mn; i++){
ll x = mn - i + 1;
ll y = mx - i + 1;
ans += (x * y);
}
cout << ans << 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 14:38:21
- Judged At
- 2024-11-05 14:38:21
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 536.0 KiB