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

Автор Alexey, история, 2 года назад, По-русски

I have two submissions of the same code 169242883 and 169242938 of the problem 812 E one with compiler Visual C++ 17, another with compiler GNU C++ 17.

Visual C++ gives TLE, GNU oks. Looks like sync_with_stdio doesn't work properly in Visual C++. Has anybody faced this problem before?

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

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

Auto comment: topic has been translated by Alexey (original revision, translated revision, compare)

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

It is well-known stuff that sync_with_stdio doesn't work in Visual C++.

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

    Hey, thanks for the info! Do you have any idea how make it work in Visual C++?

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

      maybe u can use printf, scanf instead, if sync_with_stdio doesn't work?

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

      Even if this stuff is well-known, I only read it today.

      I think that Visual C++ is simply slower, there might be no way to make it work. Basically sending solutions in Visual C++ makes no sense.