hello,
I am getting time limit exceeded when i submit the program, is there any chance that answer is also worng?
please reply

thanx

  • created

    Aug '10
  • last reply

    Aug '10
  • 1

    reply

  • 285

    views

  • 2

    users

Yup. If You have TLE You may have correct answer but also not.
Easy way to check it is this program (sumbit in any task):

#include<stdio.h>
int main(void)
{
int a;
while(1){a++;}
return 0;
}