반응형 분류 전체보기359 baekjoon - python - 1065 https://www.acmicpc.net/problem/1065 1065번: 한수 어떤 양의 정수 X의 각 자리가 등차수열을 이룬다면, 그 수를 한수라고 한다. 등차수열은 연속된 두 개의 수의 차이가 일정한 수열을 말한다. N이 주어졌을 때, 1보다 크거나 같고, N보다 작거나 �� www.acmicpc.net # @Author YoungMinKim # baekjoon N=int(input()) cnt=0 if N 2020. 8. 28. baekjoon - python - 4673 https://www.acmicpc.net/problem/4673 4673번: 셀프 넘버 셀프 넘버는 1949년 인도 수학자 D.R. Kaprekar가 이름 붙였다. 양의 정수 n에 대해서 d(n)을 n과 n의 각 자리수를 더하는 함수라고 정의하자. 예를 들어, d(75) = 75+7+5 = 87이다. 양의 정수 n이 주어졌을 때, www.acmicpc.net # @Author YoungMinKim # baekjoon def self_number(): ls = [] for i in range(1,10001): ls.append(i + sum([int(j) for j in str(i)])) return set(range(1,10001)) - set(ls) result = sorted(self_number(.. 2020. 8. 28. baekjoon - python -2839 https://www.acmicpc.net/problem/2839 2839번: 설탕 배달 상근이는 요즘 설탕공장에서 설탕을 배달하고 있다. 상근이는 지금 사탕가게에 설탕을 정확하게 N킬로그램을 배달해야 한다. 설탕공장에서 만드는 설탕은 봉지에 담겨져 있다. 봉지는 3킬로그�� www.acmicpc.net # @Author YoungMinKim # baekjoon N=int(input()) five = [] three = [] nam5 = N//5 nam3 = N//3 result=[] for i in range(nam5+1): five.append(5*i) for j in range(nam3+1): three.append(3*j) for i in five: for j in three: if i+j == .. 2020. 8. 28. baekjoon - python - 2108 https://www.acmicpc.net/problem/2108 2108번: 통계학 첫째 줄에 수의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 그 다음 N개의 줄에는 정수들이 주어진다. 입력되는 정수의 절댓값은 4,000을 넘지 않는다. www.acmicpc.net # @Author YoungMinKim # baekjoon import sys from collections import Counter N= int(sys.stdin.readline()) arr = [] for _ in range(N): arr.append(int(sys.stdin.readline())) arr.sort() avg=sum(arr)/len(arr) median = arr[len(arr)//2] mode = Counte.. 2020. 8. 27. baekjoon - python - 9653 https://www.acmicpc.net/problem/9653 9653번: 스타워즈 로고 스타워즈 로고를 예제 출력과 같이 출력하는 프로그램을 작성하시오. www.acmicpc.net # @Author YoungMinKim # baekjoon print(" 8888888888 888 88888") print(" 88 88 88 88 88 88") print(" 8888 88 88 88 88888") print(" 88 88 888888888 88 88") print("88888888 88 88 88 88 888888") print() print("88 88 88 888 88888 888888") print("88 88 88 88 88 88 88 88") print("88 8888 88 88 88 88.. 2020. 8. 27. baekjoon - python - 9498 https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net # @Author YoungMinKim # baekjoon score = int(input()) if score>=90 and score=80: print('B') elif score>=70: print('C') elif score>=60: print('D') else: print('F') 2020. 8. 27. 이전 1 ··· 40 41 42 43 44 45 46 ··· 60 다음 반응형