API Response (JSON)
{
"problem": {
"name": "A. k-rounding",
"description": {
"content": "For a given positive integer _n_ denote its _k_\\-rounding as the minimum positive integer _x_, such that _x_ ends with _k_ or more zeros in base 10 and is divisible by _n_. For example, 4\\-rounding o",
"description_type": "Markdown"
},
"platform": "Codeforces",
"limit": {
"time_limit": 1000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "CF861A"
},
"statements": [
{
"statement_type": "Markdown",
"content": "For a given positive integer _n_ denote its _k_\\-rounding as the minimum positive integer _x_, such that _x_ ends with _k_ or more zeros in base 10 and is divisible by _n_.\n\nFor example, 4\\-rounding o...",
"is_translate": false,
"language": "English"
},
{
"statement_type": "Markdown",
"content": "对于给定的正整数 $n$,定义其 $k$-rounding 为最小的正整数 $x$,使得 $x$ 在十进制下以 $k$ 个或更多零结尾,且能被 $n$ 整除。\n\n例如,$375$ 的 $4$-rounding 是 $375·80 = 30000$。$30000$ 是满足以 $4$ 个或更多零结尾且能被 $375$ 整除的最小整数。\n\n编写一个程序,计算 $n$ 的 $k$-rounding。\n\n输...",
"is_translate": true,
"language": "Chinese"
},
{
"statement_type": "Markdown",
"content": "**Definitions** \nLet $ n \\in \\mathbb{Z}^+ $, $ k \\in \\mathbb{Z} $ with $ 0 \\leq k \\leq 8 $. \nThe $ k $-rounding of $ n $ is the smallest positive integer $ x $ such that: \n- $ n \\mid x $, \n- $ x \\...",
"is_translate": false,
"language": "Formal"
}
]
}