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

Автор MagicSpark, история, 7 месяцев назад, По-английски

I submitted the same code twice in codeforces round 908(div.1).problem A.

I submitted for the first time in m1.codeforces.com, but it didn't show in submission page ,so I submitted for the second time.

For a few minutes,the two submission's came out together in my submission page,that gives me -50pts of pernalty.

Could the second submission be removed?

MikeMirzayanov

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

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

Auto comment: topic has been updated by MagicSpark (previous revision, new revision, compare).

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

Auto comment: topic has been updated by MagicSpark (previous revision, new revision, compare).

»
7 месяцев назад, # |
  Проголосовать: нравится +46 Проголосовать: не нравится

Codeforces doesn't allow exact same code submission, but you managed to submit two same codes 1 2. New achievement unlocked :)?

»
7 месяцев назад, # |
  Проголосовать: нравится +54 Проголосовать: не нравится

Bad news: code are same, but different compilers were used:(

»
7 месяцев назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Happened with me a few days back. Clicked on the submit button, page got reloaded and no submission was found! Edit: By the way I really want it to happen because it might get you to become LGM!! Congrats in advance!

»
7 месяцев назад, # |
  Проголосовать: нравится +44 Проголосовать: не нравится

it's not an error actually, you chose 2 different compilers

»
7 месяцев назад, # |
  Проголосовать: нравится +40 Проголосовать: не нравится

You submitted one in C++17(32 bit) and the other, the accepted solution, in C++20(64 bit). So while it was the same code, the two submissions are not identical.