Please read the new rule regarding the restriction on the use of AI tools. ×

signature's blog

By signature, history, 4 years ago, In English

I was getting this error in some of the problems and my solution was getting Memory Limit Exceeded on Test 1 or Wrong Answer on Test 1. But after adding below lines my solutions got accepted.

ifstream cin("input.txt"); ofstream cout("output.txt");

Link of failed submission

Link of passed submission

Problem253 A

  • Vote: I like it
  • +13
  • Vote: I do not like it

| Write comment?
»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

If you define cin and cout as file streams in main function, they are not visible in the auxiliary function. So the first submission tries to read from the standard input instead of file stream.