728x90
https://www.acmicpc.net/problem/2443
728x90
n = int(input())
for i in range(n, 0, -1):
print(' '*(n-i), '*'*(i-1), '*', '*'*(i-1), sep='')
728x90
'Problem Solving > BOJ' 카테고리의 다른 글
[백준, BOJ 3009] 네 번째 점 (python) (0) | 2021.05.10 |
---|---|
[백준, BOJ 1000] A + B (python) (0) | 2021.05.10 |
[백준, BOJ 2444] 별 찍기 - 7 (python) (0) | 2021.05.10 |
[백준, BOJ 10870] 피보나치 수 5 (python) (0) | 2021.05.10 |
[백준, BOJ 9020] 골드바흐의 추측 (python) (0) | 2021.05.10 |