API Response (JSON)
{
"problem": {
"name": "A. Perfect Squares",
"description": {
"content": "Given an array _a_1, _a_2, ..., _a__n_ of _n_ integers, find the largest number in the array that is not a perfect square. A number _x_ is said to be a perfect square if there exists an integer _y_ s",
"description_type": "Markdown"
},
"platform": "Codeforces",
"limit": {
"time_limit": 1000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "CF914A"
},
"statements": [
{
"statement_type": "Markdown",
"content": "Given an array _a_1, _a_2, ..., _a__n_ of _n_ integers, find the largest number in the array that is not a perfect square.\n\nA number _x_ is said to be a perfect square if there exists an integer _y_ s...",
"is_translate": false,
"language": "English"
},
{
"statement_type": "Markdown",
"content": "给定一个包含 $n$ 个整数的数组 $[a_1, a_2, ..., a_n]$,找出其中最大的不是完全平方数的数。\n\n一个数 $x$ 被称为完全平方数,当且仅当存在整数 $y$ 使得 $x = y^2$。\n\n第一行包含一个整数 $n$ ($1 ≤ n ≤ 1000$) —— 数组中元素的个数。\n\n第二行包含 $n$ 个整数 $a_1, a_2, ..., a_n$ ($-10^6 ≤ a_i ≤...",
"is_translate": true,
"language": "Chinese"
},
{
"statement_type": "Markdown",
"content": "Let $ A = \\{a_1, a_2, \\dots, a_n\\} \\subseteq \\mathbb{Z} $, with $ 1 \\leq n \\leq 1000 $ and $ -10^6 \\leq a_i \\leq 10^6 $.\n\nDefine the set of perfect squares in $ A $ as:\n$$\nS = \\{ x \\in A \\mid \\exists ...",
"is_translate": false,
"language": "Formal"
}
]
}