BAEKJOON
-
[백준, Python] 2577번 - 숫자의 개수개발/알고리즘 2022. 5. 7. 22:26
정수 3개를 입력 받아주자 first = int(input()) second = int(input()) third = int(input()) first와 second, third를 곱해준 결과를 String(문자)으로 변환해준다음 List에 넣고 result라는 변수로 선언해준다. 0~9의 숫자를 number라는 이름의 리스트로 선언해준다. result = list(str(first * second * third)) number = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] for문을 통해서 result와 number의 요소에 차례대로 접근해준다. (count 함수는 찾고싶은 문자가 List안에 몇개나 들어있는지 정수로 반환해준다.) result List에 number List의 값을 차례대..
-
[백준, Python] 10871번 - X보다 작은 수개발/알고리즘 2022. 5. 6. 16:49
문제에서 입력하는 정수 두개와 여러개의 정수를 받기 위해서, map()과 list()를 사용해 입력을 받아주자 first, second = map(int, input().split()) numlist = list(map(int, input().split())) for문으로 numlist에 있는 요소들에게 접근 한 다음, if 문의 조건을 통과하는 요소들만 printlist에 추가 한다. printlist = [] for i in range(len(numlist)): if numlist[i] < second : printlist.append(numlist[i]) list인 printlist를 바로 출력하게 될 경우 [, , ,]의 형태가 그대로 출력되게 되어, 문제 제출시 오답으로 처리된다. .join을 ..