| Problem | area_noi |
|---|---|
| User | sussyimpasta |
| Submission Time | 2025-04-09 15:33:07 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
area_noi.cpp: In function ‘int main()’:
area_noi.cpp:7:28: error: ‘LLONG_MIN’ was not declared in this scope
7 | long long maxProduct = LLONG_MIN; // Initialize to the smallest possible value
| ^~~~~~~~~
area_noi.cpp:2:1: note: ‘LLONG_MIN’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
1 | #include <iostream>
+++ |+#include <climits>
2 | using namespace std;