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

Автор Prateek_Jakhar, история, 4 года назад, По-английски
  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

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

In that contest, it is stated that your program should use files for i/o, not stdin/stdout. So you should probably do that.

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

    I tried uploading the txt file of same code but still got same error

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

      It means you're supposed to read input from a file and write output to a file.

      So for example if you look at 80557361, you'll see that they are using FileReader/FileWriter for their i/o. I'm a C++ user so I don't really know Java, but it shouldn't be too hard to use FileReader/FileWriter with FastReader and PrintWriter.