{"problem":{"name":"090. Computer World","description":{"content":"Computer World You just bought a new computer, and you wonder if it has a large, medium, or small amount of storage on its hard drive. The storage of your computer's hard drive will be given in gigab","description_type":"Markdown"},"platform":"Codeforces","limit":{"time_limit":1000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"CF10269090"},"statements":[{"statement_type":"Markdown","content":"Computer World\n\nYou just bought a new computer, and you wonder if it has a large, medium, or small amount of storage on its hard drive. The storage of your computer's hard drive will be given in gigabytes (GB).\n\nIf your computer's storage space is less than or equal to 200 GB, you consider it SMALL.\n\nOtherwise, if your computer's storage space is less than or equal to 500 GB, you consider it MEDIUM.\n\nOtherwise, you consider it LARGE.\n\nGiven these storage space bounds, figure out whether or not your computer's storage is SMALL, MEDIUM, or LARGE, and print the answer accordingly.\n\nThe only line of input contains a string indicating how much storage space your computer has, with a \"GB\" on the end. For example, if your computer had 300 gigabytes of storage, this would be read as \"300GB\" (no quotes) in the input.\n\nOutput a single string: SMALL, MEDIUM, or LARGE (all caps), classifying your computer's storage space as described above.\n\n## Input\n\nThe only line of input contains a string indicating how much storage space your computer has, with a \"GB\" on the end. For example, if your computer had 300 gigabytes of storage, this would be read as \"300GB\" (no quotes) in the input.\n\n## Output\n\nOutput a single string: SMALL, MEDIUM, or LARGE (all caps), classifying your computer's storage space as described above.\n\n[samples]","is_translate":false,"language":"English"},{"statement_type":"Markdown","content":"**Definitions**  \nLet $ s \\in \\mathbb{R}^+ $ be the storage capacity in gigabytes, extracted from the input string by removing the suffix \"GB\".\n\n**Constraints**  \n$ s > 0 $\n\n**Objective**  \nDetermine the classification $ C \\in \\{\\text{SMALL}, \\text{MEDIUM}, \\text{LARGE}\\} $ as follows:  \n$$\nC =\n\\begin{cases}\n\\text{SMALL} & \\text{if } s \\leq 200 \\\\\n\\text{MEDIUM} & \\text{if } 200 < s \\leq 500 \\\\\n\\text{LARGE} & \\text{if } s > 500\n\\end{cases}\n$$","is_translate":false,"language":"Formal"}],"meta":{"iden":"CF10269090","tags":[],"sample_group":[],"created_at":"2026-03-03 11:00:39"}}