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

Обсуждение задачи 1012. K-ичные числа. Версия 2

useful tip! (if you got AC in K-based Numbers. Version 1)
Послано Miguel Angel Ortiz Merida 7 май 2015 05:27
Use Java! :D


so... I am used to code in C++, and I'd never solved a problem in Java before. I spent like an hour learning the basics, changed all the variables in my K-based Numbers. Version 1 solution to BigInteger in Java and got AC!
Re: useful tip! (if you got AC in K-based Numbers. Version 1)
Послано Drunken Statue 6 фев 2016 08:56
question does unfairly favors languages w/ big integer library

if cannot link in library for c++ then can implement by hand [for this question, only 4 ops required: =, +=, *=, output], but consumes time to debug