Problem logs
User notthatcp
Submission Time 2025-03-03 15:55:22
Score 0
Max Time N/A
Max Memory N/A

Compile Error

logs.cpp: In function ‘bool ok(long long int, const vi&, long long int)’:
logs.cpp:43:39: error: too few arguments to function ‘long long int iceil(long long int, long long int)’
43 | for(auto i : a) sum += iceil(i-1/m);
| ^
logs.cpp:36:12: note: declared here
36 | inline int iceil(int x, int y){return (x + y - 1) / y;}
| ^~~~~