/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 560.0 KiB
#2 Accepted 2ms 744.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 2ms 328.0 KiB
#5 Accepted 2ms 344.0 KiB
#6 Accepted 1ms 540.0 KiB

Code

// Created on: 2024-11-05 20:15
// Author: Safwan_Ibrahim

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

#define ll long long
#define endl '\n'

void solve()
{
    int a,b; cin >> a >> b;
    if (b > a) {
        swap(a,b);
    }
    ll ans = 0;
    while(b > 0) {
        ans += a * b;
        a--,b--;
    }
    cout << ans << endl;
    
}

int32_t main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
    while(t--) solve();
    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 14:40:49
Judged At
2024-11-05 14:40:49
Judged By
Score
100
Total Time
2ms
Peak Memory
744.0 KiB