이것이 코딩 테스트다21 201p <실전 문제> : 떡볶이 떡 만들기 # 떡볶이 떡 만들기 N, M = map(int, input().split()) CM = list(map(int, input().split())) result = 0 i = 0 while i = N: i = 0 else: CM[-1] -= 1 result += 1 CM.sort() print(CM[-1]) 2022. 7. 5. 197p <실전 문제> : 부품찾기 # 부품 찾기 N = int(input()) Nlist = input().split() M = int(input()) Mlist = input().split() for i in Mlist: on = 0 for j in Nlist: if i == j: on = 1 if on == 1: print("yes", end=" ") else: print("no", end=" ") 2022. 7. 4. array03(실전 문제): 두 배열의 원소 교체 # 두 배열의 원소 교체 N, K = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() b.sort(reverse=True) for i in range(K): a[i] = b[i] print(sum(a)) 2022. 6. 29. array02(실전 문제) : 성적이 낮은 순서로 학생 출력하기 # 성적이 낮은 순서로 학생 출력하기 n = int(input()) result = [] for i in range(n): result.append(input().split()) result.sort(key=lambda score: score[1]) for i in range(n): print(result[i][0], end=" ") 2022. 6. 28. 이전 1 2 3 4 5 6 다음