ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1050. Preparing an Article

WA5, any tests?
Posted by motoras 24 Jun 2019 15:15
I run out of ideas, trying to pass test #5. Does anyone can tell me how this test looks like?
Thank you,
Re: WA5, any tests?
Posted by snamy520 23 Aug 2019 04:47
There seem to be some non-ASCII characters in the test cases. If the input is loaded byte by byte, then the result should be output byte by byte as well.

I used Rust and handled the bytes as chars, which were stored as 4-byte unicode, but mistakenly output the result by chars instead of bytes.