{"raw_statement":[{"iden":"problem statement","content":"Determine if an $N$\\-sided polygon (not necessarily convex) with sides of length $L_1, L_2, ..., L_N$ can be drawn in a two-dimensional plane.\nYou can use the following theorem:\n**Theorem**: an $N$\\-sided polygon satisfying the condition can be drawn if and only if the longest side is strictly shorter than the sum of the lengths of the other $N-1$ sides."},{"iden":"constraints","content":"*   All values in input are integers.\n*   $3 \\leq N \\leq 10$\n*   $1 \\leq L_i \\leq 100$"},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$L_1$ $L_2$ $...$ $L_N$"},{"iden":"sample input 1","content":"4\n3 8 5 1"},{"iden":"sample output 1","content":"Yes\n\nSince $8 < 9 = 3 + 5 + 1$, it follows from the theorem that such a polygon can be drawn on a plane."},{"iden":"sample input 2","content":"4\n3 8 4 1"},{"iden":"sample output 2","content":"No\n\nSince $8 \\geq 8 = 3 + 4 + 1$, it follows from the theorem that such a polygon cannot be drawn on a plane."},{"iden":"sample input 3","content":"10\n1 8 10 5 8 12 34 100 11 3"},{"iden":"sample output 3","content":"No"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}