Search found 4 matches

by DocJoe
Fri Oct 07, 2016 5:22 pm
Forum: The Hacker's Server
Topic: Server hacked
Replies: 111
Views: 304122

AGK wrote:
dark_ipl wrote:I am a hacked account :D
Me too ! :)
By SkidTeam ? :lol:
by DocJoe
Sun Nov 30, 2008 4:49 pm
Forum: Challenges Solved
Topic: Delegates
Replies: 17
Views: 2034

syncbit,

great!

I remembered the (n+1)*(n/2) from school but not the one to calc the sum of the squares.

Thanks,

DJ
by DocJoe
Sun Nov 30, 2008 4:44 pm
Forum: Challenges Solved
Topic: UpCount
Replies: 28
Views: 2442

ah, seems i spoiled the problem...

had no javac installed and therefore copied it directly to c (nice that the language keywords are that similar so it took a couple of minutes only). Worked out of the box.
by DocJoe
Sun Nov 30, 2008 4:39 pm
Forum: Challenges Solved
Topic: The Powers That Be
Replies: 27
Views: 2904

Nice challenge. Now I know how to do large number multiplication in python. :) that's the solution in python from decimal import * getcontext().prec=600 getcontext().power(getcontext().power(Decimal('17'),Decimal('39')),Decimal('11')) the rest is some string editing... Only one thing: The descriptio...