Enquesta frameworks (multi)


Submit solution

Points: 10
Time limit: 5.0s
Memory limit: 256M

Author:
Problem types
Allowed languages
C#, Go, Java

En les enquestes poden haver preguntes condicionades. Són preguntes que només es fan si s'ha donat una determinada resposta en una pregunta anterior.

En una enquesta sobre frameworks es pregunta als participants si en coneixen algun, i en cas afirmatiu se'ls pregunta quin.

Benvingut a l'enquesta.
Coneixes algun framework?
> no
---
Gracies a totes i tots per contestar

Benvingut a l'enquesta.
Coneixes algun framework?
> si
Quin?
> react
S'ha registrat la resposta: react
---
Gracies a totes i tots per contestar

Input Format

Primer s'indicarà la quantitat de persones que han de contestar l'enquesta (nombre enter).
Després, per cada enquesta, l'entrada té dues opcions:

  • un únic no

  • un si i una nova línia de text

Constraints

-

Output Format

S'imprimirà l'enquesta en el format apuntat als casos de prova, separant cada nova enquesta de l'anterior ---. La frase Gracies a totes i tots per contestar es mostra només un cop al final de tot després d'un ---.

Test Case 1

Input
1
no
Output
Benvingut a l'enquesta.
Coneixes algun framework?
---
Gracies a totes i tots per contestar

Test Case 2

Input
1
si
vue.js
Output
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: vue.js
---
Gracies a totes i tots per contestar

Test Case 3

Input
1
si
svelte
Output
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: svelte
---
Gracies a totes i tots per contestar

Test Case 4

Input
2
si
Spring
si
vue.js
Output
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: Spring
---
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: vue.js
---
Gracies a totes i tots per contestar

Test Case 5

Input
2
si
Spring
no
Output
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: Spring
---
Benvingut a l'enquesta.
Coneixes algun framework?
---
Gracies a totes i tots per contestar

Test Case 6

Input
3
si
Spring
no
si
Laravel
Output
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: Spring
---
Benvingut a l'enquesta.
Coneixes algun framework?
---
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: Laravel
---
Gracies a totes i tots per contestar

Test Case 7

Input
5
no
si
Spring
no
no
si
Laravel
Output
Benvingut a l'enquesta.
Coneixes algun framework?
---
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: Spring
---
Benvingut a l'enquesta.
Coneixes algun framework?
---
Benvingut a l'enquesta.
Coneixes algun framework?
---
Benvingut a l'enquesta.
Coneixes algun framework?
Quin?
S'ha registrat la resposta: Laravel
---
Gracies a totes i tots per contestar

Authorship: Fernando Porrino Serrano

CC BY-NC-SA 4.0