Link Search Menu Expand Document
あるまかんライブラリ

:warning: short-snip/div-ceil.cpp

Code

const auto divceil = [](int64_t a, int64_t b) { return (a + b - 1) / b; };
#line 1 "short-snip/div-ceil.cpp"
const auto divceil = [](int64_t a, int64_t b) { return (a + b - 1) / b; };
Back to top page