Блог пользователя improvement_19

Автор improvement_19, история, 3 года назад, По-английски

https://codeforces.me/contest/1220/submission/122950923 i have tried this a lot but still not able to remove TLE in case of input n is 10^3 so automatically input will be o(n^2) so how to do it?? thanks in advance

  • Проголосовать: нравится
  • -11
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +16 Проголосовать: не нравится

Floating-point input is slow, you should take input as an integer, and cast it to a long double later on.