https://www.acmicpc.net/problem/2439
import sys
n = int(sys.stdin.readline())
for i in range(1, n+1):
a = "*" * i
print(a.rjust(n))
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 10952번 - A+B - 5 (0) | 2020.06.09 |
---|---|
[Python] 백준 10871번 - X보다 작은 수 (0) | 2020.06.09 |
[Python] 백준 2438번 - 별 찍기 - 1 (0) | 2020.06.09 |
[Python] 백준 11022번 - A+B - 8 (0) | 2020.06.09 |
[Python] 백준 11021번 - A+B - 7 (0) | 2020.06.09 |
댓글