※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※
이번에 볼 문제는 백준 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
'BOJ' 카테고리의 다른 글
[BOJ 25937 // C++] Balanced Strings (0) | 2023.03.19 |
---|---|
[BOJ 25895 // C++] Don't Break the Ice (0) | 2023.03.18 |
[BOJ 13907 // C++] 세금 (0) | 2023.03.17 |
[BOJ 25826 // C++] 2차원 배열 다중 업데이트 단일 합 (0) | 2023.03.16 |
[BOJ 25943 // C++] 양팔저울 (1) | 2023.03.15 |