{"problem":{"name":"162. Parallel Lines","description":{"content":"Your younger sibling needs help with their algebra homework, and it involves a full worksheet of detecting parallel lines in equations! Too inarticulate to explain how to find these parallel lines, yo","description_type":"Markdown"},"platform":"Codeforces","limit":{"time_limit":1000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"CF10269162"},"statements":[{"statement_type":"Markdown","content":"Your younger sibling needs help with their algebra homework, and it involves a full worksheet of detecting parallel lines in equations! Too inarticulate to explain how to find these parallel lines, you decide to create a piece of code that will solve the problems for them. \n\nYou will be given two lines of linear equations in $y = m x + b$ form. See the example input for the exact formatting. $m$ will always be written before the $x$ term, even if $m$ is equal to 1.\n\nIf the two linear equations are parallel, output \"PARALLEL\", otherwise output \"NOT PARALLEL\".\n\n## Input\n\nYou will be given two lines of linear equations in $y = m x + b$ form. See the example input for the exact formatting. $m$ will always be written before the $x$ term, even if $m$ is equal to 1.\n\n## Output\n\nIf the two linear equations are parallel, output \"PARALLEL\", otherwise output \"NOT PARALLEL\".\n\n[samples]","is_translate":false,"language":"English"},{"statement_type":"Markdown","content":"**Definitions**  \nLet $ L_1: y = m_1 x + b_1 $ and $ L_2: y = m_2 x + b_2 $ be two linear equations in slope-intercept form.\n\n**Constraints**  \n- $ m_1, m_2, b_1, b_2 \\in \\mathbb{R} $  \n- $ m_1 $ and $ m_2 $ are explicitly given as coefficients of $ x $, possibly including implicit 1 (e.g., \"x\" means $ 1x $).\n\n**Objective**  \nDetermine if $ L_1 \\parallel L_2 $:  \n$$\n\\text{Output } \\begin{cases} \n\\text{\"PARALLEL\"} & \\text{if } m_1 = m_2 \\\\\n\\text{\"NOT PARALLEL\"} & \\text{otherwise}\n\\end{cases}\n$$","is_translate":false,"language":"Formal"}],"meta":{"iden":"CF10269162","tags":[],"sample_group":[],"created_at":"2026-03-03 11:00:39"}}