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

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

On szkopul, I'm seeing problem statements where the \n character appears instead of actual newlines, even in sample input/output. Other non-ASCII characters appear to be written in escaped format also instead of rendered properly.

I'm curious if this is a local issue for just myself and, if not, if anyone has a good short-term fix for this.

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

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

I’m experiencing the same issue. As for the fix (for the newlines in sample input/output), I sometimes run a C++ code containing “cout << ( input goes here );” to get the “\n”s converted into newlines. I know it’s not a very nice solution, but for big test cases it’s faster than erasing “\n”s manually.

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

Can you link an example?