pub fn enumerate_quotients(n: u64) -> Vec<Quotient>
1以上N以下の自然数xについてfloor(N/x)の取りうる値とそれを与えるxの範囲を列挙する。
floor(N/x)
Time complexity $O(\sqrt{N})$