I'm thinking I'm going to write a python program when I have the time B)
Got the program written (I will post the code on Wed. if anyone is interested) and my answer also adds up to 33 (9***7)

Is this what anyone else got?
I'm only getting a sum of 30 (****3)
I believe (****5) sum of 33 is not the right answer.
I got an area of 37871.9, which you can't go much lower...
Got my e-mail saying I had the correct answer.
Looks like only 479 correct answers this week - the prize was over 4000 NP.
For those that are interested, my VBScript code to find the answer was:
dim x, y, z
dim mincost
mincost = 99500
for x = 0 to 100
for y = 0 to 189
for z = 0 to 335
if 121 * x + 64 * y + 36 * z >= 12055 then
if 995 * x + 525 * y + 299 * z < mincost then
mincost = 995 * x + 525 * y + 299 * z
Response.Write x & ", " & y & ", " & z & " - " & mincost & " NP<br>"
Response.Flush
end if
end if
next
next
next
I started by finding the total square inches required. There are 54 Neopian species, 10 members of each species, plus the host for a total of 541 pets eating. At 70 square inches each, this is 37870 square inches total.
The pizzas come in three sizes, 22" at 995 NP, 16" at 525 NP and 12" at 299 NP. The area of each of these is PI * radius * radius, so the areas are 121 * PI, 64 * PI and 36 * PI. Dividing each of these into 37870 (and rounding up), I find that if I buy 100 large, 189 medium or 335 small pizzas, I have enough pizza, so I used those values as the upper bounds of my three loops. The lower bounds are all zero, as I can choose to buy no pizzas of any given size.
I made x, y and z the number of large, medium and small pizzas. Then the condition is that 121 * PI * x + 64 * PI * y + 36 * PI * z >= 37870. To simplify, I divided both sides by PI and got 121x + 64y + 36z >= 37870/PI = 12054.395. Now the left side will be an integer, so to be >= 12054.395, it must be >= 12055. This is where my outer if statement came from.
To find the minimum cost, I just started with the cost of 100 large pizzas or 99500. For every combination of x, y and z that gave me enough pizza, I checked to see if the cost (995x + 525y + 299z) was smaller than the smallest cost I had found so far.
The smallest cost I found overall was 98907 NP for 3 large, 181 medium and 3 small pizzas.
@willzi8,
Quote:Got the program written (I will post the code on Wed. if anyone is interested)
Let's see the Python program, too.
@lennyfan,
import math
priceList = []
for x in range(0, 101):
for y in range(0, 190):
smallP =int((37870 - ((121*math.pi*x)+(64*math.pi*y)))/(36*math.pi)) + 1
if smallP >= 0:
price = (299*smallP)+(525*y)+(995*x)
priceList.append(price)
priceList.sort()
print priceList[0]
raw_input("")
I got top 250 and I submitted it on Friday
New Lenny is out. They want the most popular (wrong) answer from last week.
In last week's Lenny Conundrum, the correct answer was 98907. However, that was not the most popular submitted answer. What was the most popular submitted answer to last week's Lenny Conundrum?
Hey, I think I know that one 8)
@willzi8,
Really? I thought you got it right. And the answers on this board were all over the place.
@lennyfan,
I did, but I took note of some other things
@willzi8,
I think I'll enter what I entered last week, lol
yeah -- i submitted my answer from last week's too.
maybe a lot of people did the same thing i did.
(?)
but really, this week is a total guess.
My guess for this week is to assume that a lot of people didn't realize they needed to buy more than one size pizza.
i put in what i would have answered if i wanted to answer :p
@wertyiu102,
Lol the answer u had said was the most popular incorrect answer.
Congratulations! You have guessed correctly in the Lenny Conundrum game (round 329). You have won 2128 NP!
Because you were in the first 250 to guess correctly, you also have been awarded a Whole Pepperoni and Mushroom Pesto Pizza, and receive a trophy and the Lenny Conundrum avatar!
got gold
@podogo,
Round: 329
In last week's Lenny Conundrum, the correct answer was 98907. However, that was not the most popular submitted answer. What was the most popular submitted answer to last week's Lenny Conundrum?
Answer: 95025
@emer1ka,
actually was too easy last week
So does anyone know how people got that wrong answer other than copying it from wertyiu102's wrong answer posted on this board? I'm interested in what people did to calculate that answer. Wertyiu102, could you explain how you got it?