Mohamed_Saad62's blog

By Mohamed_Saad62, history, 4 years ago, In English

If I am calling too many functions which is more than allowed in the memory limit I will get run time error or memory limit exceeded ? like in this code https://codeforces.net/contest/1067/submission/85187079

UPD If I am calling too many functions which is more than the stack size I will get run time error or memory limit exceeded ?

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

»
4 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

Number of function calls you can make without RTE depends on the stack size, not memory limit.

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

Auto comment: topic has been updated by Mohamed_Saad62 (previous revision, new revision, compare).

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

Auto comment: topic has been updated by Mohamed_Saad62 (previous revision, new revision, compare).