Search found 11 matches
- Mon Dec 14, 2009 4:31 am
- Forum: Challenges
- Topic: Primal Pi
- Replies: 33
- Views: 46484
HINT: Every composite number can be written as the product of prime factors. Sequence: consecutive digits in the first 2048 decimal places of pi So, if you have a list of the first 100,000 prime numbers, you can 'test' each of the sequences, and whether one of those prime numbers is a factor of it. ...
- Thu Nov 26, 2009 5:01 am
- Forum: Challenges
- Topic: Your Turn, Part Two
- Replies: 48
- Views: 59141
- Tue Nov 24, 2009 2:37 am
- Forum: Challenges
- Topic: Lazy Maze
- Replies: 30
- Views: 48625
- Tue Nov 24, 2009 2:35 am
- Forum: Challenges Solved
- Topic: Lazy Maze
- Replies: 26
- Views: 3067
- Mon Nov 23, 2009 4:01 am
- Forum: Challenges Solved
- Topic: One Minute Man
- Replies: 39
- Views: 10714
- Fri Nov 20, 2009 5:55 am
- Forum: Challenges Solved
- Topic: countdown calc
- Replies: 20
- Views: 2981
Ahhh! That took forever (2-3 hours)
Used first 20-30 factors to work out the formula =(k-1)^5*21+k^3*5*k*MAX(0, k-10)
where k = 100-(time left)
Then used Excel to work out the binary crap along with http://www.subnetonline.com/pages/conve ... to-dec.php
Used first 20-30 factors to work out the formula =(k-1)^5*21+k^3*5*k*MAX(0, k-10)
where k = 100-(time left)
Then used Excel to work out the binary crap along with http://www.subnetonline.com/pages/conve ... to-dec.php
- Wed Nov 18, 2009 8:05 am
- Forum: Challenges Solved
- Topic: Basic
- Replies: 12
- Views: 2663
- Wed Oct 14, 2009 3:34 pm
- Forum: Challenges
- Topic: Like a 8411
- Replies: 24
- Views: 34993
- Tue Oct 13, 2009 8:13 am
- Forum: Challenges
- Topic: Didactic Blue
- Replies: 44
- Views: 84805
- Tue Oct 13, 2009 7:06 am
- Forum: Challenges Solved
- Topic: didactic green
- Replies: 12
- Views: 2531
- Tue Oct 13, 2009 5:17 am
- Forum: Challenges Solved
- Topic: UpCount
- Replies: 28
- Views: 6527
I don't like java, so I translated the code to PHP: function calc($depth) { if ($depth == 0) return 1; $cc = calc($depth - 1); return (double)$cc + ($depth % 7) + (((($cc ^ $depth) % 4) == 0) ? 1 : 0); } echo calc(11589); Didn't take more than 1 minute to translate and run ;) Yup, did exactly the s...