자바 백준 #16727
브론즈 4
https://www.acmicpc.net/problem/16727
문제를 보여
분류: 구현
문제를 해결하다
결승전은 2번의 홈어웨이 경기를 치러 총점이 가장 높은 팀이 승리합니다.
그 시점에서 총점이 같으면 어웨이 골 규칙이 적용되며 원정 경기에서 가장 많은 점수를 얻은 팀이 승리합니다.
그 어웨이 골도 같으면 승부 차기 규칙이 적용됩니다.
위의 승팀 결정 규칙에 따라 if, else if, else 조건문을 사용하여 출력 결과를 분류합니다.
코드 표시
import java.util.Scanner;
public class Main {
public static void main(String args()) {
Scanner sc = new Scanner(System.in);
int p1 = sc.nextInt();
int s1 = sc.nextInt();
int s2 = sc.nextInt();
int p2 = sc.nextInt();
if (p1 + p2 > s1 + s2) {
System.out.print("Persepolis");
}
else if (p1 + p2 < s1 + s2) {
System.out.print("Esteghlal");
}
else if (p1 + p2 == s1 + s2) {
if (p2 > s1) {
System.out.print("Persepolis");
}
else if (p2 < s1) {
System.out.print("Esteghlal");
}
else {
System.out.print("Penalty");
}
}
}
}