faiyaz26's blog

By faiyaz26, 10 years ago, In English

I have found that this solution is skipped 8255696.

why is that? what is the reason behind?

though this solution gets accepted after resubmitting!

  • Vote: I like it
  • -7
  • Vote: I do not like it

| Write comment?
»
10 years ago, # |
  Vote: I like it +8 Vote: I do not like it

Because that solution looks similar as this one 8255446. Thus it got skipped as the verdict.

»
10 years ago, # |
Rev. 4   Vote: I like it -8 Vote: I do not like it
  • »
    »
    7 years ago, # ^ |
      Vote: I like it -11 Vote: I do not like it

    ehhh= =isn't this common in simple language tasks?

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

      Bitwise equivalence of source code does not happen that easy even in simple tasks. People tend to have different coding styles (e.g. spacing), put statements in different order, add or remove empty lines for clarity, name variables differently, evaluate expressions in different order depending on how they got to the solution.

      The only problem I can think of where bitwise equivalence may actually happen with a good probability is "print integer four and ignore input".

»
7 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it