目录 @description@ @solution@ @accepted code@ @details@ @description@ 询问第 k 小的分子分母 ≤ n 的既约分数. Input 第一行包含一个整数 T(T≤10^2),表示数据组数. 接下来 T 行每行两个整数 n, k,表示一组询问.保证询问的答案在 (0,1] 范围内. Output 输出 T 行,每行包含一个分数 p/q,要求 gcd(p, q) = 1. Sample Input 5 4 6 5 1 9 9 3 4 7…