[백준 2523번] 별찍기-13
2020. 7. 8. 13:33ㆍAlgorithm/practice
https://www.acmicpc.net/problem/2523
n = int(input())
lines = 2*n
for i in range(1, lines):
starNum = i if i <= n else lines-i
print(starNum * '*')
'Algorithm > practice' 카테고리의 다른 글
[백준 1181번] 단어정렬 (0) | 2020.07.09 |
---|---|
[백준 2446번] 별찍기-2446 (0) | 2020.07.08 |
[백준 1110번] 더하기 사이클 (0) | 2020.07.08 |
[백준 10996번] 별찍기-21 (0) | 2020.07.08 |
[백준 9093] 단어 뒤집기 (0) | 2020.07.02 |