/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 2ms 508.0 KiB
#3 Accepted 2ms 336.0 KiB
#4 Accepted 2ms 508.0 KiB
#5 Accepted 2ms 504.0 KiB
#6 Accepted 1ms 516.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define bug(a) cout << #a << " : " << a << endl;

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t = 1;
    while (t--) {
        int n,m;cin>>n>>m;
        ll ans=0;
        int cur=0;
        for(int i=1;i<=min(n,m);i++){
            ans+=(n-cur)*(m-cur);
            cur++;
        }
        cout<<ans<<endl;
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1121 Square Counting Challenge
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-11 10:09:26
Judged At
2025-01-11 10:09:26
Judged By
Score
100
Total Time
2ms
Peak Memory
540.0 KiB