This documentation is automatically generated by online-judge-tools/verification-helper
#include "utilities/quotients.hpp"
正の整数 $n$ に対して $\lfloor n / k \rfloor$ ( $k$ は整数)の形で表される整数を昇順に列挙する.計算量は $O(\sqrt{n})$.
long long n = 10;
vector<long long> v = get_quotients(n); // 1, 2, 3, 5, 10