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

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

Hello! It's a very intersting contest.

The reason might be as follow: a = list(map(int, input().split()))

We need to modify it into a = input().split()

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

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

That's not the issue. The issue is you're using Counter, which is basically a hashmap. This has a worst case complexity of O(n) per operation.

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

    Thanks! I will check it later