/ SeriousOJ /

Record Detail

Compile Error

foo.cc:5:10: fatal error: template.cpp: No such file or directory
    5 | #include "template.cpp"
      |          ^~~~~~~~~~~~~~
compilation terminated.

Code

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

#ifndef ONLINE_JUDGE
#include "template.cpp"
#else
#define debug(...)
#endif

#define all(x) (x).begin(), (x).end()
#define sz(x) (int) (x).size()
#define int long long
const int mod = 1e9 + 7, INF = 1e18 + 3, N = 2e5 + 2;


void solve(int cs){
    int h, w; cin >> h >> w;
    int ans = 0;
    for(int i = 1 ; i <= min(h, w) ; i++){
         ans += (h - i + 1) * (w - i + 1);
    }
    cout<<ans<<'\n';
}

//It's now, or never.
signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int TEST = 1;
   // cin >> TEST;

    for (int i = 1; i <= TEST; i++) {
      //  cout << "Case " << i << ":"<<'\n';
        solve(i);
    }
    #ifndef ONLINE_JUDGE
       cout << endl << "finished in " << clock() * 1.0 / CLOCKS_PER_SEC << " sec" << endl;
    #endif
    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:36:39
Judged At
2024-11-05 14:36:39
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes