※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 11176번 문제인 In the Shower이다.
문제는 아래 링크를 확인하자.

https://www.acmicpc.net/problem/11176 

 

11176번: In the Shower

Your roommate recently gave you a somewhat passiveaggressive post-it note containing the question “how many empty shampoo bottles do we really need to keep in the shower?”. Passive-aggressive post-it notes generally start with a single number P, the nu

www.acmicpc.net

비었다고 간주할 수 있는 샴푸통의 개수를 문제의 조건에 맞게 세어 출력하는 문제이다.

 

출력 조건의 한 줄을 출력하라는 부분을 보완설명하자면, 이는 각 테스트케이스마다 각 케이스의 답을 하나의 줄에 출력해야 한다. 즉, 테스트케이스가 T개 주어지면 총 T개의 줄을 출력해야 한다.

 

아래는 제출한 소스코드이다.

#include <iostream>
using namespace std;

int T, E, N;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> T;
	while (T--) {
		cin >> E >> N;
		int cnt = 0;
		while (N--) {
			int x; cin >> x;
			if (x > E) cnt++;
		}

		cout << cnt << '\n';
	}
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 22093 // C++] Соцопрос  (0) 2023.01.05
[BOJ 25495 // C++] 에어팟  (0) 2023.01.05
[BOJ 21280 // C++] Förvirrad föreläsare  (0) 2023.01.05
[BOJ 20473 // C++] Гостиница  (0) 2023.01.05
[BOJ 23364 // C++] Almost Always  (0) 2023.01.05

+ Recent posts