본문 바로가기
반응형

baekjoon180

baekjoon - python - 2555 https://www.acmicpc.net/problem/2555 2555번: 생일 출력하기 월/일 형식으로 출력하면 된다. 예를 들어, 7월 4일인 경우에는 7/4, 9월 20일인 경우에는 9/20, 11월 4일인 경우에는 11/4와 같이 출력하면 된다. www.acmicpc.net print('10/14') 이 문제는 참... 2020. 8. 24.
baekjoon - python - 2530 https://www.acmicpc.net/problem/2530 2530번: 인공지능 시계 첫째 줄에 종료되는 시각의 시, 분, 초을 공백을 사이에 두고 출력한다. (단, 시는 0부터 23까지의 정수이며, 분, 초는 0부터 59까지의 정수이다. 디지털 시계는 23시 59분 59초에서 1초가 지나면 0시 0 www.acmicpc.net # @Author YoungMinKim # baekjoon import datetime h,m,s = map(int,input().split()) s2 = int(input()) now = str(datetime.timedelta(hours=h,minutes=m,seconds=s)+datetime.timedelta(seconds=s2)) h = now.split(':')[.. 2020. 8. 24.
baekjoon - python - 2525 https://www.acmicpc.net/problem/2525 2525번: 오븐 시계 첫째 줄에 종료되는 시각의 시와 분을 공백을 사이에 두고 출력한다. (단, 시는 0부터 23까지의 정수, 분은 0부터 59까지의 정수이다. 디지털 시계는 23시 59분에서 1분이 지나면 0시 0분이 된다.) www.acmicpc.net # @Author YoungMinKim # baekjoon import datetime as dt h,m = map(int,input().split()) m2 = int(input()) now = str(dt.timedelta(hours=h,minutes=m)+dt.timedelta(minutes = m2)) h=now.split(':')[0] m=now.split(':')[1] if.. 2020. 8. 24.
baekjoon - python - 2523 https://www.acmicpc.net/problem/2523 2523번: 별 찍기 - 13 첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다. www.acmicpc.net # @Author YoungMinKim # baekjoon n= int(input()) for i in range(n): print('*'*(i+1)) for j in range(n-1,0,-1): print('*'*j) 2020. 8. 24.
baekjoon - python - 2480 https://www.acmicpc.net/problem/2480 2480번: 주사위 세개 1에서부터 6까지의 눈을 가진 3개의 주사위를 던져서 다음과 같은 규칙에 따라 상금을 받는 게임이 있다. 같은 눈이 3개가 나오면 10,000원+(같은 눈)*1,000원의 상금을 받게 된다. 같은 눈이 2개만 www.acmicpc.net # @Author YoungMinKim # baekjoon x= list(map(int,input().split())) if len(set(x)) == 1: print(10000+x[0]*1000) elif len(set(x)) == 2: if x.count(x[0]) == 2: print(1000+x[0]*100) elif x.count(x[1]) == 2: print(1000 .. 2020. 8. 24.
baekjoon - python - 2446 https://www.acmicpc.net/problem/2446 2446번: 별 찍기 - 9 첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다. www.acmicpc.net # @Author YoungMinKim # baekjoon n = int(input()) num1=0 for i in range(n-1,-1,-1): print(' '*num1+'*'*(2*i+1)) num1+=1 num2 = n-2 for j in range(1,n): print(' '*num2+'*'*(2*j+1)) num2-=1 2020. 8. 24.
반응형