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

Обсуждение задачи 1644. Куча орехов

In my opinion there is problem in tests.Because
Послано Qafqaz_Ferhad Cebiyev 7 июл 2010 19:06
char x[100] -- is Wa
while char x[101] -- is AC
Re: In my opinion there is problem in tests.Because
Послано UNKNOWN_LAMER 7 июл 2010 20:45
If you think that n > 100 in some tests, you can write in your program:

if (n > 100) for(;;);

If some test is incorrect you will get "Time limit exceeded" on this test.

But in all tests in this problem n <= 100. So there is a problem in your program, not in tests.
Re: In my opinion there is problem in tests.Because
Послано Nguyen Khac Tung 7 авг 2011 09:45
c/c++ array size is kind of not stable. For string-related problem, i prefer pascal
Re: In my opinion there is problem in tests.Because
Послано ONU_1785 20 янв 2012 00:28
A C-string uses 1 additional symbol (with number 0) as the end of line. So u have to create an array with 100+1=101 symbol.