https://www.acmicpc.net/problem/10996
n = int(input())
a = n//2
b = n - n//2
for i in range(n):
print('* ' * b)
print(' *' * a)
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 2920번 - 음계 (0) | 2021.07.21 |
---|---|
[Python] 백준 5397번 - 키로거 (0) | 2021.07.21 |
[Python] 백준 2446번 - 별 찍기 - 9 (0) | 2020.06.09 |
[Python] 백준 2523번 - 별 찍기 - 13 (0) | 2020.06.09 |
[Python] 백준 10817번 - 세 수 (0) | 2020.06.09 |
댓글