.. class:: text-justify **Este mensaje es opcional:** Esta tarea tiene como objetivo evaluar su conocimiento en el tema de **Reemplazar con el tema a evaluar**, por eso se espera que para este problema lo aplique. **Debido a que este mensaje evidencia de que trata el problema o con cuáles herramientas podra resolverle, al igual que en los tags, si es crucial para resolverlo, es aconsejable no describirlo** | Enunciado del problema ---------------------- .. class:: text-justify El enunciado del problema está intentado para describir el problema y dar contexto relacionado para solucionar el problema. Este se considera el **parrafo #1** de la descripción. Para agregar texto en negrilla se hace **así**. También puede agregar un hipervínculo cómo: UNCode_. .. _UNCode: http://uncode.unal.edu.co | Asi se pueden agregar imagenes al problema con un tamaño determinado, debe poner la imagen en la carpeta /public/image_name para que el servidor pueda reconocerla. .. image:: task_id/image_name :height: 180px Aquí puede poner un segundo parrafo para el enunciado. Para poder agregar más parrafos tiene que agregar un salto de línea, el caractér '|' en otra línea, agregar otra línea en blaco y ahí si puede poner el otro parrafo. Así como están separados el parrafo 1 y el 2. Los caracteres especiales también deben escaparse como '\\t' Para agregar saltos de linea solo deben estar separados por un salto de linea y empezar por el caracter de tuberia '|' | Como esta línea que aparecerá en una nueva. | | Entrada ------- .. class:: text-justify Esta sección está intentada para hacer la descripción de las entradas del problema, por ejemplo: se dice que tiene que leer un número **n** tal que ``0 <= n <= 2000000000``. | Salida ------ Esta sección está intentada para hacer las descripción del formato de la salida o resultado del problema. Por ejemplo se puede decir: "Su programa deberá imprimir en la pantalla (usando cout) un número n como se indicó en el enunciado.". | Ejemplos -------- | .. container:: row .. container:: col-md-6 text-justify **Entrada Ejemplo 1** :: Ejemplo de entrada #1 .. container:: col-md-6 text-justify **Salida Ejemplo 1** :: Ejemplo de salida #1 | .. container:: row .. container:: col-md-6 text-justify **Entrada Ejemplo 2** :: Ejemplo de entrada #2 .. container:: col-md-6 text-justify **Salida Ejemplo 2** :: Ejemplo de salida #2 | .. container:: row .. container:: col-md-6 text-justify **Entrada Ejemplo 3** :: Ejemplo de entrada #2 .. container:: col-md-6 text-justify **Salida Ejemplo 3** :: Ejemplo de salida #2 | Notas ----- Esta sección tiene la intención de describir notas adicionales o sugerencias que se deseen o amerite agregar. La siguiente es una nota de ejemplo: "**La salida debe tener un caracter de nueva línea al final del archivo, de lo contrario puede recibir el veredicto de respuesta incorrecta.**".

Help related to the task context.

Here you will find some information related to the language RST and how you can use it to make a good description.

  • Bold text:

    **Text between will be stronger**.
    Text between will be stronger.
  • Italic text:

    *Text between will be rendered as italic*.
    Text between will be rendered as italic
  • Math text:

    The area of a square is :math:`A_\text{s} = l^2`
    The math role marks its content as mathematical notation (inline formula).
    The input format is LaTeX, math syntax without the "math delimiters". The example is rendered as:
    As = l2
  • Monospaced text:

    ``Text between will be rendered as monospaced text.``
    Text between will be rendered as monospaced text.
  • Bullet list:

     
    - This is item 1
    - This is item 2
     
    - Bullets are "-", "*" or "+".
      text must be aligned after
      the bullet and whitespace.
    • This is item 1
    • This is item 2
    • Bullets are "-", "*" or "+". Continuing text must be aligned after the bullet and whitespace.
  • Add image:

    .. image:: task_id/image_name
       :height: 180px
    The desired image will be rendered. Remember that you have to put the task id and the image name. You have to upload the image in the tab Task files. This file must be in the public/ folder.
  • Add literal HTML:

    .. raw:: html
     
        <i class="fa fa-sitemap fa-3x"></i>
    After the '.. raw:: html' you can add your HTML code.
    The previous HTML code is rendered as follows:
  • More information:

    For more information please visit RST language documentation.

Upload multiple files

Select multiple files to upload. In case the path is not specified, the files are going to be stored in the root directory of the task file system.

List of selected files:

Understanding your result

After you submit your code, it will be assessed and a result will be given to you.
The tables below list all possible results.

Results related to your code. Results you may receive after assessing your code
  • ACCEPTED

    Awesome! Everything worked as it should have: your code passed all the test cases. Congratulations!
  • WRONG ANSWER

    Sorry, but your code failed to solve the problem. It does not solve correctly the problem you were asked for.
    The output after running your code (what it prints to the screen), is different from the output the system expected.
    If the administrator allowed it, you may be able to see the difference between your output and the expected output.
    Tips: Read carefully what you are asked to do and check again your code.
    Test your code with different inputs. You can do it in your machine or you can use the "custom input" in the tools section.
  • PRESENTATION ERROR

    The data in your output is correct, but it is not formatted in the proper way. Check the problem statement to understand the correct format of the output.
    Missing/excessive blank lines or unnecessary spaces are likely to have caused this message.
  • COMPILATION ERROR

    Your code does not compile :/. Something is faulty in your code:
    It may be a misplaced colon, bracket, quotation mark, or symbol; you may be using a reserved keyword as a variable; you may have chosen a different programming language; among other options.
    The "compilation error" message includes the output that the compiler produced with the error. Read the message carefully, it is tells you what went wrong.
  • RUNTIME ERROR

    This means that your code failed while it was executing, which means that your code compiled but exited unexpectedly when executed.
    There are many reasons why your code could crashed, some of them are:
    Division by zero, invalid memory access (e.g. bad index access to an array), null pointers, among many options.
  • TIME LIMIT EXCEEDED

    Your code exceeded the time limit. Thus, your code took too long to run the input for a given test case.
    There are two options: either your code got stuck in an infinite loop or your code takes much longer than it should.
    Tips: Check for infinite loops. Try to find another solution, one that takes less time to compute.
  • MEMORY LIMIT EXCEEDED

    Getting this result means your code is using too much memory at runtime.
    Tips: Check the data structures you are using, or find a more "optimal" solution, a solution that uses less memory.
  • OUTPUT LIMIT EXCEEDED

    Getting this result means the output of your code is longer that the allowed.
    Tips: Check for print expressions in a loop.
  • GRADING RUNTIME ERROR

    Error related to notebook file submissions. This points out a runtime error while running the grading testing code.
    This might be either an error in the grading code (i.e. calling non existent variable or function) or student code (i.e. the function to be tested is not present in the notebook).
    Tips: Check that your code implements all that was requested with the correct signature.

Results related to UNCode. Unexpected errors when your code was been executed.
  • INTERNAL ERROR

    If you get this message, do not worry, There's Nothing Wrong With Your Code!
    This error means UNCode had a problem while running or assessing your code. So, the problem is on our side.
    We apologise in advance. Please reload the page and try submitting again! If you still get the same result, please wait a while and try again or contact your professor.
  • SUBMISSION TIMED OUT

    If you get this, it means that we had a problem running and assessing your code. Wait for a while and try to send a submission again.
    This might be also caused by a too small time limit in the task configuration (talk to your professor about it).
  • OVERFLOW

    If you get this, it means the grading environment run out of memory. There might be two possible causes:
    1. The configured memory is to low to solve this problem (talk to your professor about it).
    2. Your code is printing too much data, possibly caused by prints in an infinite loop.
  • ENVIRONMENT NOT
    AVAILABLE

    There was a problem while assessing your submission. Please wait a while and reload the page, and try submitting again.

Delete all files

Are you sure you want to delete all files?

  • Correo ElectrónicoCorreo Electrónico
  • DNINFOA - SIADNINFOA - SIA
  • BibliotecasBibliotecas
  • ConvocatoriasConvocatorias
  • Identidad U.N.Identidad U.N.
  • UN-TicketUN Ticket
Escudo de la República de Colombia Escudo de la República de Colombia
es
  • es
  • en
  • Aspirantes
  • Estudiantes
  • Egresados
  • Docentes
  • Administrativos
UNCode
Inicio
Facultad
  • Misión y visión
  • Historia
  • Objetivos
  • Organigrama
  • Directivos
  • Consejo de Facultad
  • Preguntas Frecuentes
  • Quejas, reclamos y sugerencias
Investigación
  • Vicedecanatura de Investigación y Extensión
  • Grupos de investigación
  • Laboratorios
Extensión
  • Unidad de Educación Continua y Permanente
  • Instituto de extensión e investigación - IEI
  • Laboratorios
Dependencias
  • Decanatura
  • Vicedecanatura Académica
  • Vicedecanatura de Investigación y Extensión
  • Dirección de Bienestar
  • Escuela Doctoral
  • Departamentos
  • Áreas Curriculares
  • Secretaría de Facultad
  • Unidad Administrativa
Sedes
  • Amazonia
  • Bogotá
  • Caribe
  • De La Paz
  • Manizales
  • Medellín
  • Orinoquia
  • Palmira
  • Tumaco
Servicios
Perfiles
logo
  1. Programación de computadores | Grupo 3 | 2022 - 1 (current)
  1. English
    • en (English)
    • fr (Français)
    • es (Español)
    • de (Deutsch)
    • pt (Português)
  2. Course list
  3. Register
  4. Sign in
  5. UNCode
    • About us
    • Contact us

Programación de computadores | Grupo 3 | 2022 - 1 - List of exercises

TallerPreParcial. Ejercicio 1. Digitos - deadline reached
TallerPreParcial. Ejercicio 2. Calculadora - deadline reached
TallerPreParcial. Ejercicio 3. ConteoCombinacionesDados - deadline reached
TallerPreParcial. Ejercicio 4. SumaNumerosPares - deadline reached
Termometro - deadline reached
Salario - deadline reached
Parcial2_Ejercicio1 - deadline reached
Parcial2_Ejercicio2 - deadline reached
Parcial2_Ejercicio5 - deadline reached
Preparcial3_Ejercicio1 - deadline reached
Preparcial3_Ejercicio2 - deadline reached
Preparcial3_Ejercicio3 - deadline reached
ParcialFinal_Ejercicio1 - deadline reached
ParcialFinal_Ejercicio2 - deadline reached
ParcialFinal_Ejercicio3 - deadline reached
ParcialFinal_Ejercicio4 - deadline reached
ParcialFinal_Ejercicio5 - deadline reached
Parcial1_Ejercicio1 - deadline reached
  • «
  • 1
  • 2
  • »

Student's Tools

My statistics Feedback

Sign in

Please register or sign in to see the complete list of courses and be able to submit answers to problems.
Sign in

© 2014-2018 Université catholique de Louvain

UNCode is distributed under AGPL license

Régimen Legal Talento humano Contratación Ofertas de empleo Rendición de cuentas Concurso docente Pago Virtual Control interno Calidad Buzón de notificaciones
Correo institucional Mapa del sitio Redes Sociales FAQ Quejas y reclamos Atención en línea Encuesta Contáctenos Estadísticas Glosario

Contacto página web:
Carrera 30 No 45A-03
CADE de Ingeniería
Bogotá, Colombia
(+57 1) 3165000 Ext. -

© Copyright 2018
Algunos derechos reservados.
uncode_fibog@unal.edu.co
Acerca de este sitio web
Actualización:09/05/24

Orgullo UN Orgullo UN Agencia de noticias Agencia de noticias
Trámites en línea Contaduría general de la republica