| Problem | ping |
|---|---|
| User | tanyap2906 |
| Submission Time | 2025-12-10 14:41:14 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
ping.cpp: In function ‘int rabbit(int)’:
ping.cpp:16:13: error: ‘max’ was not declared in this scope; did you mean ‘std::max’?
16 | L = max(L, nl);
| ^~~
| std::max
In file included from /usr/include/c++/9/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
from ping.h:1,
from ping.cpp:1:
/usr/include/c++/9/bits/stl_algo.h:3468:5: note: ‘std::max’ declared here
3468 | max(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
ping.cpp:17:13: error: ‘min’ was not declared in this scope; did you mean ‘std::min’?
17 | R = min(R, nr);
| ^~~
| std::min
In file included from /usr/include/c++/9/algorithm:62,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:65,
from ping.h:1,
from ping.cpp:1:
/usr/in