본문 바로가기

프로그래밍56

(파이썬) 백준 알고리즘 1924번 문제 풀이 (Python)123456789101112131415161718192021222324252627282930313233343536x, y = map(int, input().split()) a = [1, 3, 5, 7, 8, 10 ,12]b = [4, 6, 9, 11]c = 2 sumD = 0for i in range(x): #a에 i월이 있으면 31을 더한다. if i in a: sumD += 31 #b에 i월이 있으면 30을 더한다. elif i in b: sumD += 30 #c가 2월이면 28을 더한다. elif i == c: sumD += 28 #나머지 y일을 더한다.sumD += y if sumD % 7 == 0: print('SUN')elif sumD % 7 == 1: print('M.. 2018. 12. 2.
(파이썬) 백준 알고리즘 2441번 문제풀이 (Python) 1234n = int(input()) for i in range(n, 0, -1): print(" "*(n-i) + "*"*i)cs문제 출처https://www.acmicpc.net/problem/2441 2018. 12. 2.
(파이썬) 백준 알고리즘 2440번 문제 풀이 (Python)1234n = int(input()) for i in range(n,0,-1): print('*'*i)cs 문제 출처https://www.acmicpc.net/problem/2440 2018. 12. 2.
(파이썬) 백준 알고리즘 2439번 문제풀이 (Python)1234n = int(input()) for b in range(1, n+1): print(' '*(n-b) + '*'*b)cs 문제 출처https://www.acmicpc.net/problem/2439 2018. 12. 2.
(파이썬) 백준 알고리즘 2438번 문제풀이 (Python)12345n = int(input()) for i in range(n): print('*'*(i+1)) cs 문제 출처https://www.acmicpc.net/problem/2438 2018. 12. 2.
(파이썬) 백준 알고리즘 2739번 문제풀이 (Python)12345n = int(input()) for i in range(9): print(n, '*' ,i+1, '=', n*(i+1)) Colored by Color Scriptercs 문제 출처https://www.acmicpc.net/problem/2739 2018. 12. 2.