eolymp
bolt
Try our new interface for solving problems
Problems

Parsing Real Numbers

Parsing Real Numbers

Write a program that read a line of input and checks if the line contains a valid real number. Real numbers may have a decimal point, an exponent (starting with the character \textbf{e} or \textbf{E}), or both. Additionally, it has the usual collection of decimal digits. If there is a decimal point, there must be at least one digit on each side of the point. There may be a plus or minus sign in front of the number, or the exponent, or both (without any blank characters after the sign). Exponents are integers (not having decimal points). There may be blank characters before or after a number, but not inside it. Note that there is no bound on the range of the numbers in the input, but for the sake of simplicity, you may assume the input strings are not longer than \textbf{1000} characters. \InputFile The first line of the input contains a single integer \textbf{t} which is the number of test cases, followed by \textbf{t} lines each containing the input line for a test case. \OutputFile The output contains \textbf{t} lines, each having a string which is \textbf{LEGAL} or \textbf{ILLEGAL}.
Time limit 1 second
Memory limit 64 MiB
Input example #1
2
  1.5e+2
3.
Output example #1
LEGAL
ILLEGAL