Are you sure you're using all 10000 images? The complete sprite sheet for most games generally range in the hundreds or lower thousands. In a 640x480 screen you can only put 24 different characters without overlapping, having too many different characters of that size in a single screen all moving around is probably going to be too confusing.
Some things you can do to reduce your spritesheet size is to reduce the framerate of the sprites, so that multiple consecutive game frames will be rendered using the same sprite images. Many older games uses 6-8 frames for run cycles and they look great. Simpler creeps can even cut more and only uses 3-4 images.
Another thing you can do is a smarter character and level design so that you don't actually need all characters at the same time. Put each different character is in their own file and you can load them depending on what you need for a particular level. You can also reuse sprites with different colors to indicate stronger version of another sprite, the recolored sprite do not actually exist in the spritesheet as separate character, instead it is composed at runtime. If your characters have visible equipments, you also don't need to have a sprite for every combination, instead compose the equipment sprites into the character images at runtime.
You can also reduce the color depth of your sprites, mosts handsets supports rendering RGB565 pixel format, and in many cases using the full RGB888 is probably more color than you actually needed.
Also, you should use a lower resolution images for lower DPI handsets (which are generally lower powered as well). In those handsets your 100x100 sprites would look grossly oversized.
Also, you probably don't need 100x100 pixels sized sprites for all objects. Many objects probably would probably be much smaller than that, and you can use a smaller-sized sprites cell size for them.