짱해커가 되어보자

boj 2446 본문

프로그래밍_일반/백준

boj 2446

Spadework 2020. 2. 3. 19:07

* Solved 기준 브론즈3 단순 풀이

n = int(input())
for i in range(n):
	print('{}{}'.format(' '*i, '*'*((n-i-1)*2+1)))
for i in range(n-1):
	print('{}{}'.format(' '*(n-i-2), '*'*((i+1)*2+1)))

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 2576  (0) 2020.02.03
boj 2522  (0) 2020.02.03
boj 2445  (0) 2020.02.03
boj 2443  (0) 2020.02.03
boj 2163  (0) 2020.02.03
Comments