ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1408. Polynomial Multiplication

The shortest program
Posted by Alex Tolstov (Vologda STU) 9 Jul 2009 00:08
My AC program in Java has 396 lines =)

And you?)))
Re: The shortest program
Posted by Fyodor Menshikov 15 Jul 2009 23:06
Java, 368
Re: The shortest program
Posted by it4.kp 16 Jul 2009 02:20
C++, 220 :)
Re: The shortest program
Posted by [SPbSU ITMO] WiNGeR 16 Jul 2009 13:42
143, C++
:)
Re: The shortest program
Posted by taobingxue 22 Sep 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
Posted by unlucky [Vologda SPU] 4 Feb 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
Posted by Vassenbaher [IU7.BMSTU] 25 Sep 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
Posted by ASK 24 Oct 2010 14:41
C++, 144 lines, 3026 characters (including comments, 15 empty lines, and the tracing utilities).
Re: The shortest program
Posted by ZamNick 24 Jan 2014 01:53
С++, 192
:)
Re: The shortest program
Posted by Eugene 8 Jun 2014 13:05
Python
120 lines
Re: The shortest program
Posted by Maksimus El Diablo 8 Apr 2019 01:11
Python
111
Re: The shortest program
Posted by Dmitriy 29 Nov 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
Posted by yyll 8 Jul 2021 18:51
Python (74) is really good at these kinds of problems.

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