백준 / 차트 / 1239번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 차트 / 1239번 (골드 5단계)문제 사이트: https://www.acmicpc.net/problem/1239 문제 설명 나의 풀이 N = input()data = list(map(int, input().split()))st = []count = 0data.sort()if data[-1] > 50: count = 0else: while data: st.append(data.pop()) if st and st[0] == 50: count = 1 break if st and data and st[-1] == data[-1]: count += 1 ..