Problem | nostatement |
---|---|
User | haydendoo |
Submission Time | 2023-01-03 08:02:03 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
nostatement.cpp: In function ‘ll B(ll, ll)’:
nostatement.cpp:25:12: error: ‘LLONG_MIN’ was not declared in this scope
25 | int ans = LLONG_MIN;
| ^~~~~~~~~
nostatement.cpp:7:1: note: ‘LLONG_MIN’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’?
6 | #include <cstdlib>
+++ |+#include <climits>
7 | using namespace std;
nostatement.cpp:26:64: error: no matching function for call to ‘max(int&, const long long int&)’
26 | for(const auto &it: abcdefghijklmnopqrstuvwxyz) ans=max(ans,it);
| ^
In file included from /usr/include/c++/9/algorithm:61,
from nostatement.cpp:2:
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: candidate: ‘template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)’
222 | max(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/i