TLE on D. Not Adding?

Правка en4, от anil_1, 2022-01-16 09:23:19

In the last Div2 round, for this problem 1627D - Not Adding, I think my submission 142872780 for the 4rth problem is not optimal and should not have passed but it did. One of the tests on which it should give TLE can be generated with

int n = 1e5;
cout << n << '\n';
for(int i = 0; i < n; i++) {
   cout << (i + 1) * 10 << ' ';
}
cout << '\n';

I want to know whether it passed due to weak constraints or there is something wrong with my above hypothesis.

Теги tle, weak testcases

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en4 Английский anil_1 2022-01-16 09:23:19 0 (published)
en3 Английский anil_1 2022-01-16 09:18:56 20
en2 Английский anil_1 2022-01-16 09:16:52 1 Tiny change: '[problem:127D], I th' -> '[problem:1627D], I th'
en1 Английский anil_1 2022-01-16 09:15:19 529 Initial revision (saved to drafts)