Caso # | Resultado | Tiempo | Memoria |
---|---|---|---|
#1 |
Error en tiempo de ejecución (NZEC)
Exited with error status 139 run: line 1: 3 Segmentation fault (core dumped) ./a.out |
0.007 s | 1 KBi |
#2 |
Error en tiempo de ejecución (NZEC)
Exited with error status 139 run: line 1: 3 Segmentation fault (core dumped) ./a.out |
0.008 s | 1 KBi |
#3 |
Error en tiempo de ejecución (NZEC)
Exited with error status 139 run: line 1: 3 Segmentation fault (core dumped) ./a.out |
0.007 s | 1 KBi |
#4 |
Error en tiempo de ejecución (NZEC)
Exited with error status 139 run: line 1: 3 Segmentation fault (core dumped) ./a.out |
0.009 s | 1 KBi |
#5 |
Error en tiempo de ejecución (NZEC)
Exited with error status 139 run: line 1: 3 Segmentation fault (core dumped) ./a.out |
0.007 s | 1 KBi |
#include <iostream> using namespace std; int main(int argc, char* argv[]) { int num1 = atoi(argv[1]), num2 = atoi(argv[2]), sum = 0; (void)argc; sum = num1 + num2; cout << sum << "\n"; return 0; }