ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1991. Битва у болота

easy translation
Послано Mattiev Jamol 11 ноя 2013 13:56
        if(a[i]<k){
       ans+=k-a[i];
        }
        else{
       ans1+=a[i]-k;
        }
Re: easy translation
Послано Egor 20 сен 2015 18:33
I think that this problem is easy enough to try to make the solution as efficient as possible.

My consideration notes:
1. You can make it without using arrays, because the local information that you get is enough to generate the answer.
2. I think that it is worth trying to make the speaking variable names. It will certainly require additional time, but I think, it should pay off in the future.
Re: easy translation
Послано IlushaMax 12 мар 2016 18:00
Any good book (about Pascal for example) will tell about it
Re: easy translation
Послано Anton Smoliakov 24 янв 2022 14:41
Ho do they get 0.001 seconds?