Ishtiaq PiasProgrammer · 4y
You can reach the centre exactly at the starting time of the contest, if possible. And you can leave the examination centre the very second the contest ends, if possible.
line 43: if (V[i] >= a) continue;Suggestion: if (V[i] > a) continue;line 46: if (b > W[Y-1]+1) continue;Suggestion: if (b > W[Y-1]) continue;
Read more… (30 words)