Accepted
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int H, W;
cin >> H >> W;
int min_side = min(H, W);
ll total = 0;
for (int k = 1; k <= min_side; ++k) {
total += (H - k + 1) * (W - k + 1);
}
cout << total << 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 15:03:11
- Judged At
- 2024-11-05 15:03:11
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB