|
|
back to boardPlease help. WA Test 6/ Помогите, пожалуйста. Неправильный ответ. Тест 6 Posted by Alex 29 Sep 2013 15:39 Не могу разобраться в чем ошибка. using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); string[] d = Console.ReadLine().Split(' '); int x = 0; int n = int.Parse(s[0])*int.Parse(s[1]); for (int i = 0 ; i < int.Parse(s[1]) ; i++) { x = x + int.Parse(d[i]); } if (x > n) { x = x - n; } else x = 0; Console.WriteLine(x); } } } Re: Please help. WA Test 6/ Помогите, пожалуйста. Неправильный ответ. Тест 6 Posted by Alex 29 Sep 2013 15:41 Вопрос снят. Ошибку нашел. |
|
|