Can you answer me ?

hi guys!!!
While solving a problem in code chef

  1. Should we use the variables which are mentioned in the program or can we use any variables ?
  2. Should we bother about compilation time and memory occupied by the code which I have written ?
  3. If we should bother about compilation time and if the compilation time for the code which I have written is more than the given compilation time what will happen if we submit our code ?
    Please mail me if u know !!!
    my email address is gullapudikanakaraju@gmail.com
  1. you can use variable with any name, its not mandatory to use as given in question.

  2. Yes, the time and memory need to be worried about. Time limit and Memory limit is mentioned with every question.

  3. If your code is taking more time to compile and produce the desired result then it will produce TLE error ( Time Limit Exceeded ).

1 Like