Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there some place on the internet where I can run my Java program?

A program I am working on takes forever to complete (~3days, everytime).

Is there some place on the internet where I can leave the code, some robot might run it for me and I can come back and collect the results? Some online judge that offers this capability?

[I am not talking abt optimisations here.]

like image 276
Moeb Avatar asked Dec 23 '22 08:12

Moeb


2 Answers

You may need to go to something like this:

Amazon Elastic Compute Cloud (Amazon EC2) is a web service that provides resizable compute capacity in the cloud. It is designed to make web-scale computing easier for developers.

http://aws.amazon.com/ec2/

like image 126
James Black Avatar answered Dec 26 '22 08:12

James Black


If you really cannot run it on your own machines, you can run in on Amazon EC2 cloud. You would need to maintain a virtual machine, but Amazon provides some preconfigured settings.

The pricing starts with $0.085/hour (~$6 for three days). The actual price is determined by the duration of use and your CPU needs. Higher CPU capability is more expensive.

like image 39
notnoop Avatar answered Dec 26 '22 08:12

notnoop