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

Обсуждение задачи 1408. Умножение многочленов

The shortest program
Послано Alex Tolstov (Vologda STU) 9 июл 2009 00:08
My AC program in Java has 396 lines =)

And you?)))
Re: The shortest program
Послано Fyodor Menshikov 15 июл 2009 23:06
Java, 368
Re: The shortest program
Послано it4.kp 16 июл 2009 02:20
C++, 220 :)
Re: The shortest program
Послано [SPbSU ITMO] WiNGeR 16 июл 2009 13:42
143, C++
:)
Re: The shortest program
Послано taobingxue 22 сен 2009 21:11
pascal 196
o(∩_∩)o...
It's not the shortest, but I am really proud of it!

Edited by author 22.09.2009 21:13
Re: The shortest program
Послано unlucky [Vologda SPU] 4 фев 2010 21:22
Java - 330 :)
Good architecture is the key for the shortest program and saving nerves.IMHO

Edited by author 04.02.2010 21:26
Re: The shortest program
Послано Vassenbaher [IU7.BMSTU] 25 сен 2010 06:12
That's funny. This is the first question that comes to mind after the AC. (300 PASCAL lines)
Re: The shortest program
Послано ASK 24 окт 2010 14:41
C++, 144 lines, 3026 characters (including comments, 15 empty lines, and the tracing utilities).
Re: The shortest program
Послано ZamNick 24 янв 2014 01:53
С++, 192
:)
Re: The shortest program
Послано Eugene 8 июн 2014 13:05
Python
120 lines
Re: The shortest program
Послано Maksimus El Diablo 8 апр 2019 01:11
Python
111
Re: The shortest program
Послано Dmitriy 29 ноя 2020 17:25
Java 186

Edited by author 29.11.2020 17:38

Edited by author 29.11.2020 17:43
Re: The shortest program
Послано yyll 8 июл 2021 18:51
Python (74) is really good at these kinds of problems.

p1 = Polynomial.parse(input())
p2 = Polynomial.parse(input())
print(p1*p2)