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 1005. Stone Pile

Выдает ошибку "Runtime error 1"
Posted by Artem Alieinikov 18 Mar 2016 13:19
Можете обьяснить пожалуйста что я делаю не так?
Я ходил по обсуждению задачи пробывал тесты которые предлагают, результаты вроде бы как правильные.
Может я неправильно организовал ввод/вывод данных?
Работает как-то так.
Считываю в 1 строку: 6 1 4 5 6 7 9
Очищаю консоль и вывожу Console.WriteLine ответ: 0
Re: Выдает ошибку "Runtime error 1"
Posted by ToadMonster 18 Mar 2016 14:41
There are 2 (TWO) lines in the sample. First contains count of stones, second contains stones weights.

Your test should look like:
---
6
1 4 5 6 7 9
---

By the way some languages (C scanf/C++ iostream/Java scanners) allow reading from input without checking how data items are placed on input lines.
Here - http://acm.timus.ru/help.aspx?topic=csharp - input read in similar way via
      string[] input = Console.In.ReadToEnd().Split(
         new char[] {' ', '\t', '\n', '\r'},
         StringSplitOptions.RemoveEmptyEntries);