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

 

이번에 볼 문제는 백준 27855번 문제인 Cornhole이다.
문제는 아래 링크를 확인하자.

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

 

27855번: Cornhole

There is a single line of output. If no one scores any points, the output is the string NO SCORE, otherwise, the line contains two space separated decimal integers P and N, where P is the player number (1 or 2) and N is the number of points the player scor

www.acmicpc.net

주어진 두 정수 H1과 B1을 이용해 player 1의 점수를, 그리고 H2와 B2를 이용해 player 2의 점수를 계산해낼 수 있다.

 

구한 두 플레이어의 점수의 대소관계의 경우에 따라 문제가 요구하는 내용을 출력해 문제를 해결해주자.

 

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

#include <iostream>
using namespace std;

int h1, b1, h2, b2;
int s1, s2;

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

	cin >> h1 >> b1 >> h2 >> b2;
	s1 = h1 * 3 + b1, s2 = h2 * 3 + b2;
	if (s1 > s2) cout << 1 << ' ' << s1 - s2;
	else if (s2 > s1) cout << 2 << ' ' << s2 - s1;
	else cout << "NO SCORE";
}
728x90

+ Recent posts