API Response (JSON)
{
"problem": {
"name": "A. k-th divisor",
"description": {
"content": "You are given two integers _n_ and _k_. Find _k_\\-th smallest divisor of _n_, or report that it doesn't exist. Divisor of _n_ is any such natural number, that _n_ can be divided by it without remaind",
"description_type": "Markdown"
},
"platform": "Codeforces",
"limit": {
"time_limit": 2000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "CF762A"
},
"statements": [
{
"statement_type": "Markdown",
"content": "You are given two integers _n_ and _k_. Find _k_\\-th smallest divisor of _n_, or report that it doesn't exist.\n\nDivisor of _n_ is any such natural number, that _n_ can be divided by it without remaind...",
"is_translate": false,
"language": "English"
},
{
"statement_type": "Markdown",
"content": "给定两个整数 $n$ 和 $k$。求 $n$ 的第 $k$ 小的约数,若不存在则报告。\n\n$n$ 的约数是指任何自然数,使得 $n$ 能被其整除而无余数。\n\n第一行包含两个整数 $n$ 和 $k$($1 ≤ n ≤ 10^{15}$,$1 ≤ k ≤ 10^9$)。\n\n如果 $n$ 的约数个数少于 $k$ 个,请输出 _-1_。\n\n否则,输出 $n$ 的第 $k$ 小的约数。\n\n在第一个例子中,数...",
"is_translate": true,
"language": "Chinese"
},
{
"statement_type": "Markdown",
"content": "**Definitions** \nLet $ n \\in \\mathbb{Z}^+ $ with $ 1 \\leq n \\leq 10^{15} $. \nLet $ D(n) = \\{ d \\in \\mathbb{Z}^+ \\mid d \\mid n \\} $ be the set of positive divisors of $ n $, ordered increasingly: $ d...",
"is_translate": false,
"language": "Formal"
}
]
}