Using 1.0, board set to Uno.
1: BareMinimum (blank setup and loop): 466 bytes.
3: Loop to set pins 2-13 as INPUT: 652 bytes.
Yes, but a fair test is not an empty sketch. Otherwise who cares how much memory it takes? Or what the pins are?
This sketch:
void setup()
{
}
void loop()
{
}
For me was 450 bytes.
And adding the pinModes certainly pushed it up:
void setup()
{
for (int x=0; x< A5; x++)
pinMode (x, INPUT);
}
void loop()
{
}
Now: 636 bytes.
But let's assume that we use pinMode somewhere in our sketch:
void setup()
{
}
void loop()
{
pinMode (5, OUTPUT);
}
Now it's 624 bytes. So we only really "lost" 12 bytes.
We confirm that here:
void setup()
{
for (int x=0; x< A5; x++)
pinMode (x, INPUT);
}
void loop()
{
pinMode (5, OUTPUT);
}
That was 644 bytes. Only 20 bytes more than not doing it.
So, you can set them to inputs if you want. That is, if you don't believe the datasheet. But if you don't believe the datasheet you are going to have trouble programming it anyway.
The only thing I have found inconsistent with the datasheet is that pin 13 seems to be left high (but input) which means the internal pull-ups are enabled. Perhaps the bootloader shouldn't do that.
(edit) This was with version 0022 of the IDE so the actual figures vary slightly from those above.