Algorithm/Boj

Algorithm/Boj

백준 15720 python

b, c ,d = map(int,input().split()) b_price = sorted(list(map(int, input().split())), reverse=True) c_price = sorted(list(map(int, input().split())), reverse=True) d_price = sorted(list(map(int, input().split())), reverse=True) sum = sum(b_price)+sum(c_price)+sum(d_price) sale_sum = 0 Minvalue = min(len(b_price),len(c_price),len(d_price)) for _ in range(Minvalue): sale_sum += (b_price[0]+c_price[..

Algorithm/Boj

백준 19564 python

word = input() alphabet = 'abcdefghijklmnopqrstuvwxyz' count = 1 for i in range(len(word)-1): if alphabet.index(word[i]) < alphabet.index(word[i+1]) : continue else : count += 1 print(count) 현재 글자의 인덱스 값보다 다음 인덱스 값의 알파벳이 뒤에 있으면 입력횟수를 최소화 할 수 있으므로 index()함수를 사용하여 위치를 구하여 비교한다. 또는 alphabet변수 사용없이 아스키코드를 이용해 풀 수도 있다. if ord(word[i]) < ord(word[i+1]) :