Solução por Davi Coutinho
Primeiramente, devemos criar um vetor que armazena os números de todas as cartas. Após recebermos os valores de e , percorremos todo o vetor cartas, e vemos para quantos índices , temos dividindo , em seguida, armazenamos a resposta num outro vetor, chamado . Agora, basta imprimir as 3 respostas, que representam quantas cartas Lorenzo ganhou em cada rodada. Segue o código para melhor entendimento:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int cartas[1010]; | |
int resp[3]; | |
int main() { | |
int n, N, K, c = 0; | |
cin >> n; | |
for(int i = 0; i < n; i++){ | |
cin >> cartas[i]; | |
} | |
for(int i = 0; i < 3; i++){ | |
cin >> N >> K; | |
for(int j = 0; j < n; j++){ | |
if((K-cartas[j])%N == 0){ | |
resp[i]++; | |
} | |
} | |
} | |
for(int i = 0; i < 3; i++){ | |
cout << resp[i] << "\n"; | |
} | |
return 0; | |
} |