Bugday's blog

By Bugday, history, 8 years ago, In English

Hello codeforces. I want to ask you something. Because I am going nuts. Can someone tell us the difference between this two codes 15768283 , 16948593. Or the thing what the second code doesn't have. I am trying to find it but it seems like they are doing same things. So I thought our awesome community (Codeforces) can solve this problem.

Thanks in advance...

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

»
8 years ago, # |
  Vote: I like it +45 Vote: I do not like it

Your array cnt's size is maxn but xor of numbers smaller than 10^6 can be bigger than that.

  • »
    »
    8 years ago, # ^ |
      Vote: I like it +35 Vote: I do not like it

    I just changed the value of maxn. Here is the submission 16953275

    • »
      »
      »
      8 years ago, # ^ |
        Vote: I like it +28 Vote: I do not like it

      Oh that was the wrong thing the title means :D

      Got it!

      Thank you...