본문 바로가기
Algorithm

[구현/수학] 백준 6764 Sounds fishy! - Python

by jangThang 2022. 2. 25.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    6764번: Sounds fishy!

    The output is one of four possibilities. If the depth readings are increasing, then the output should be Fish Rising. If the depth readings are decreasing, then the output should be Fish Diving. If the depth readings are identical, then the output should b

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     증가, 감소, 항등 수열인지 판별하는 문제입니다.

     

    2022.01.19 - [Algorithm] - [Algorithm] 단골 1번 문제, 구현 / 수학

     

    [Algorithm] 단골 1번 문제, 구현 / 수학

    [ Contents ] 1. 구현  단순히 '구현'만 하면 되는 문제 유형입니다. 문제를 이해하고 입력에 맞춰 적절한 출력만 하면 됩니다. 특별한 알고리즘이나 프로그래밍적 기법 없이, 단순 제어문만 사용하

    star7sss.tistory.com

     

     

     

    3. 코드

    high = []
    for _ in range(4):
        high.append(int(input()))
    
    #증가
    if high[0]<high[1]<high[2]<high[3]:
        print("Fish Rising")
    #감소
    elif high[0]>high[1]>high[2]>high[3]:
        print("Fish Diving")
    #일정
    elif high[0] == high[1] == high[2] == high[3]:
        print("Fish At Constant Depth")
    #그 외
    else:
        print("No Fish")

     문구를 출력하는 문제는 '오타' 때문에 오답률이 높습니다.

     되도록 문제의 출력 예시를 그대로 복사 붙여넣기 하는 게 좋습니다.

     

     

    star가 되고나서 Tistory

    반응형

    댓글