anuj_shah's blog

By anuj_shah, history, 6 years ago, In English

This submission got idleness limit exceeded. This submission got accepted.

What's the difference?

Full text and comments »

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

By anuj_shah, history, 7 years ago, In English

In this question on Hackerearth, I have implemented Segment tree with lazy propagation in Python and it generated TLE. Can somebody help me with this? Thanks in advance.

My Submission

Full text and comments »

  • Vote: I like it
  • -1
  • Vote: I do not like it

By anuj_shah, history, 7 years ago, In English

In this question of codechef when I use map(int, raw_input().split()) it generated Runtime Error (NZEC) and when I used [int(x) for x in raw_input().split()] it worked like charm. Could anyone help me with this?

My solution which worked correctly: Code Runtime Error: Code

Full text and comments »

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