/ SeriousOJ /

Record Detail

Compile Error

foo.c:1:10: fatal error: iostream: No such file or directory
    1 | #include <iostream>
      |          ^~~~~~~~~~
compilation terminated.

Code

#include <iostream>
using namespace std;

long long countPerfectSquareSubgrids(int H, int W) {
    int minSide = min(H, W);
    long long totalCount = 0;

    for (int k = 1; k <= minSide; ++k) {
        long long countK = (H - k + 1) * (W - k + 1);
        totalCount += countK;
    }

    return totalCount;
}

int main() {
    int H, W;
    cin >> H >> W; 
    long long result = countPerfectSquareSubgrids(H, W);

    
    cout << result << endl;

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1121 Square Counting Challenge
Contest
Brain Booster #7
Language
C99 (GCC 13.2.0)
Submit At
2024-11-05 14:54:51
Judged At
2024-11-05 14:54:51
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes