Solução por João Guilherme
Primeiro lemos o n e a nota de corte, depois lemos os n pares de números, se a soma deles for maior que a nota de corte, aumentamos um a resposta, por fim a imprimimos.
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 main(){ | |
int n, p, a, b, ans = 0; | |
scanf("%d %d", &n, &p); | |
for(int i = 0; i < n; ++i){ | |
scanf("%d %d", &a, &b); | |
ans += (a + b >= p); | |
} | |
printf("%d\n", ans); | |
return 0; | |
} |