PS/Baekjoon Online Judge

[백준 25784] Easy-to-Solve Expressions [Python]

kimyoungrok 2023. 8. 4. 15:40
728x90

백준 25784 - 문제
백준 25784 - 입/출력


풀이

세 수를 입력받아 만약 아무 두 수의 합이 다른 수와 같음 1을,

아무 두 수의 곱이 다른 수와 같으면 2를

그게 아니라면 3을 출력하면 된다.

모든 경우를 확인하기 귀찮으니, 입력받은 수를 오름차순으로 정렬해서 1, 2번째 수에 대해서만 확인해주자.

2 ~ 1000사이의 수이므로 결국 두 수의 합과 곱이 다른 수와 일치하기 위해서는 다른 수의 값보다 작거나 같아야 하기 때문에 가능하다.


소스코드

소스코드 보기


출처

 

25784번: Easy-to-Solve Expressions

When one looks at a set of numbers, one usually wonders if there is a relationship among them? This task is more manageable if there are only three numbers. Given three distinct positive integers, you are to determine how one can be computed using the othe

www.acmicpc.net

728x90