PS/Baekjoon Online Judge

[백준 25932] Find the Twins [Python]

kimyoungrok 2023. 8. 29. 05:49

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


풀이

4줄에 걸쳐 입력되는 숫자 중 아래에 조건에 따라 출력하면 된다.

  • 17이 있으면 "zack"
  • 18이 있으면 "mack"
  • 17, 18 둘다 있으면 "both"
  • 둘 다 없으면 "none"

입력받은 숫자들과 결과를 같이 출력해줘야 한다는 점에 유의하자.


소스코드

소스코드 보기


출처

 

25932번: Find the Twins

Print each input set. Then, on the next output line, print one of four messages (mack, zack, both, none), indicating how many of the twins are in the set. Leave a blank line after the output for each test case.

www.acmicpc.net