{"raw_statement":[{"iden":"statement","content":"Soroush's room is a square with side length _n_. Before this contest he bought _k_ fine Persian carpets to carpet his room for celebrating the 100th contest on his favorite site. Each Persian carpet is a square of side length _n_1.\n\nSoroush wants to cover all the area of his room. Carpets can be put over each other but it is not allowed to rotate the carpets. Can Soroush carpet his room completely?"},{"iden":"input","content":"The input consists of three integer numbers _n_, _k_ and _n_1 (10 ≤ _n_ ≤ 12, 1 ≤ _k_ ≤ 10, )."},{"iden":"output","content":"Write a single _YES_ or _NO_. Write _YES_ if and only if Sorush can carpet his room completely."},{"iden":"examples","content":"Input\n\n10 4 6\n\nOutput\n\nYES\n\nInput\n\n10 2 5\n\nOutput\n\nNO"}],"translated_statement":[{"iden":"statement","content":"Soroush 的房间是一个边长为 $n$ 的正方形。在本次比赛之前，他购买了 $k$ 块精美的波斯地毯，准备用它们铺满房间，以庆祝他在最爱的网站上举办的第 $100$ 场比赛。每块波斯地毯都是边长为 $n1$ 的正方形。\n\nSoroush 希望完全覆盖房间的全部面积。地毯可以重叠放置，但不允许旋转地毯。Soroush 能否完全铺满他的房间？\n\n输入包含三个整数 $n$、$k$ 和 $n1$（$10 ≤ n ≤ 12$，$1 ≤ k ≤ 10$）。\n\n请输出一个 _YES_ 或 _NO_。仅当 Soroush 能够完全铺满房间时，输出 _YES_。\n\n"},{"iden":"input","content":"输入包含三个整数 $n$、$k$ 和 $n1$（$10 ≤ n ≤ 12$，$1 ≤ k ≤ 10$）。\n"},{"iden":"output","content":"请输出一个 _YES_ 或 _NO_。仅当 Soroush 能够完全铺满房间时，输出 _YES_。\n"},{"iden":"examples","content":"输入\n10 4 6\n输出\nYES\n输入\n10 2 5\n输出\nNO\n"}],"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ n, k, n_1 \\in \\mathbb{Z}^+ $ be given integers.\n\n**Constraints**  \n$ 10 \\leq n \\leq 12 $,  \n$ 1 \\leq k \\leq 10 $,  \n$ n_1 \\in \\mathbb{Z}^+ $.\n\n**Objective**  \nDetermine whether the total area of $ k $ carpets, each of side length $ n_1 $, is at least the area of a square room of side length $ n $, under the condition that carpets cannot be rotated and must be aligned axis-aligned.  \n\nThat is, decide if:  \n$$\nk \\cdot n_1^2 \\geq n^2\n$$\n\nOutput **YES** if the inequality holds, **NO** otherwise.","simple_statement":null,"has_page_source":false}