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

Обсуждение задачи 2011. Длинное условие

My code:

/*
Code deleted.
*/

we get the WA12.

What's the problem?

Edited by author 09.11.2013 22:57
You will easily get overflow... 100! ~ 9*10^157 which is a "little" too big
Oh, right! Thank you very much.
It turns out I have the wrong formula?
Thank you very much. I change long long to double. ;)
Vedernikoff 'Goryinyich' Sergey (HSE: АОП) Re: Runtime error (integer division by zero) in test 70 [6] // Задача 2011. Длинное условие 10 ноя 2013 18:45
This problem is possible to solve without any formulas - just using one sorting of 3-element array and 3 IF statements - so, you won't have problems with overflows
Thank you.
Thank you. I got AC.
Please, could you explain a bit more your approach?


Edited by author 05.09.2014 03:37
Just got A.C
Just need to change all variable and return values to double.
Count number of 1s 2s and 3s.
Take the factorials of these numbers however you feel right, divide by total length,n.
un_try писал(a) 4 сентября 2014 03:42
Please, could you explain a bit more your approach?
Thanks you very much!

I did this: 4 If. One for n > 5, the another threes for n == 5, n == 4 and n == 3.