-
-
Notifications
You must be signed in to change notification settings - Fork 59
sunner edited this page Apr 26, 2012
·
3 revisions
In local/onlinejudge/judge/sandbox/sand, run the following commands and post output to issues.
uname -a
cc -v
make clean
make
- Check whether the judge daemon (judged) is running. The process's name should be php or php.exe. If not, follow README to launch it.
- If the daemon quit by itself, check your PHP log (default to syslog or Windows NT events log) for detail error messages.
Ideone.com will reject the later access if the delay between accesses is too short. You can increase the delay value at settings->site administration->plugins->local plugins->onlinejudge
To protect the online judge server, functions/system calls those may be harmful are not allowed to be used in submissions. Only the following functions are allowed:
- Read and write an opened file. Eg.
read(), write(), fread(), fwrite(), scanf(), printf(), fscanf(), fprintf(), getchar(), putchar()
and etc. - Allocate/Release memory. Eg.
new, delete, malloc(), free(), brk()
and etc.