in reply to Re (tilly) 3: Canadian Cryptography Contest
in thread Canadian Cryptography Contest

map choked completely, by using massive amounts of memory.
This is perl, v5.6.1 built for i686-linux
Must be one of those things.

Replies are listed 'Best First'.
Re (tilly) 5: Canadian Cryptography Contest
by tilly (Archbishop) on Jan 23, 2002 at 00:55 UTC
    Hrm.

    Possible. After all you are taking a list of a million, turning that into a list of about 6 million things, then allocating 6 million scalars. If each scalar takes 32 bytes, that is 192 MB just for the scalars, not even counting the space taken by the stack...

    With 5.6.0 and earlier you would have had the same potential problem, but would likely get bored before taking enough hours to get there.