Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
334 views

Security issues with online-judge

I am involved in making an online-programming-judge supporting C/C++ like SPOJ,UVA etc on Linux machine(Ubuntu). The code itself is in C++ . I have to prevent the server from malicious code. I plan to ...
5
votes
6answers
380 views

Scheme Programming Challenges

I have gotten a lot of use and coding practice out of sites like UVa Online Judge (for Java and C programming challenges) and Project Euler (for C and Python practice). I think its a great method to ...
5
votes
4answers
869 views

Best online judge with good Java support?

I'm wondering what's a good online judge for just practicing algorithms. I'm currently not very good at writing algorithms, so probably something easy (and least frustrating) would be good. I've ...
5
votes
3answers
858 views

Creating an online judge from scratch

I've participated in a few online programming contests and found the online judges used quite remarkable in functionality. Coming to the point of the topic, my college is also about to hold an online ...
4
votes
2answers
192 views

How to protect an online judge against malicious code?

In the site Ideone a user uploads code to be run on a remote server. This is similar to the functions of an online judge. The problem is that users might upload code that attempts to 'hack' the ...
4
votes
3answers
609 views

How does the ACM ICPC Online Judge prevent malicious attacks?

I've spent more than a few hours humbling myself on the ACM ICPC's problem set archive, and I've wondered how the online judge is able to compile and run source code from any user and prevent ...
3
votes
2answers
115 views

How to restrict computing resources of a program?

I wish to implement an online judge system in Linux using python. I need to restrict computing resource(time, memory) for process. Process should terminate when it uses more resources than given. ...
2
votes
2answers
121 views

How to obtain the consumption memory of running “exe”

I'm developing an "Online Judge System",like SGU "http://acm.sgu.ru/" I wangt to obtain the accurate consumption memory of running ".exe"(.c/.cpp-->.exe) using Java. Process : submit ...
2
votes
2answers
429 views

How to Conduct an online coding competition?

I need to design a website for a programming competition event. It will be similar to TOP CODER competitions. User will be given all questions & then user submits the code, that will be running on ...
2
votes
3answers
640 views

Looking for online Judge Engine that support Python

I am writing a website which intends to be a place for use to paste/answer coding questions. Especially Python. So, I am looking for an "online judge" engine that could support Python(c/c++/java/# ...
1
vote
2answers
78 views

How to implement online judge bot?(ex. TopCoder, Uva, ACM-ICPC)

There are many online judge sites which can verify your program by comparing its output to the correct answers. What's more, they also check the running time and memory usage to make sure that your ...
1
vote
1answer
362 views

Runtime error in UVA Online Judge

I'm doing problem 10003 "cutting sticks" of the UVa online judge, I'm pretty sure my code works and I think I' correctly exiting the problem. But still I get a runtime error, I read somewhere that is ...
1
vote
4answers
346 views

How to test a Python script with an input file filled with testcases?

I'm participating in online judge contests and I want to test my code with a .in file full of testcases to time my algorithm. How can I get my script to take input from this .in file?
1
vote
2answers
751 views

Is Levenshtein's distance the right way to tackle this Edit Steps problem?

I'm familiar with Levenshtein's distance, so I decided I would use it to solve UVA's Edit Steps Ladder problem. My solution is: import java.io.*; import java.util.*; class LevenshteinParaElJuez ...
0
votes
3answers
377 views

UVA 10189: Minesweeper

Here's the link to the problem: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=13&page=show_problem&problem=1130 This is my code and it works perfectly; ...
0
votes
1answer
160 views

SPOJ ADDREV Wrong Answer

I'm trying to solve the Adding Reversed Numbers problem (ADDREV) at the Sphere Online Judge but my submission keeps coming up wrong answer. I've tried int, unsigned int, long, and unsigned long for ...
0
votes
4answers
301 views

Problem processing input for online judge

This is related to my previous question I'm solving UVA's Edit Step Ladders and trying to make the online judge comply with my answer. I have used the method ReadLn() to adapt my textfile-reading ...
0
votes
1answer
155 views

How do I adapt this program to comply with the online judge?

I'm solving UVA's Edit Step Ladders on an uva sub-site named programming-challenges.com, but since I didn't get at all the format in which I'm supposed to test-input I simply took their sample input, ...