[백준 10996번] 별찍기-21
2020. 7. 8. 13:06ㆍAlgorithm/practice
https://www.acmicpc.net/problem/10996
n = int(input())
r, s = n % 2, n // 2
oddLine = '* '* s if r == 0 else '* ' * (n-s)
evenLine = ' *' * (n-s) if r == 0 else ' *' * s
starStructure = oddLine + '\n' + evenLine
for _ in range(1, n+1):
print(starStructure)
'Algorithm > practice' 카테고리의 다른 글
[백준 2523번] 별찍기-13 (0) | 2020.07.08 |
---|---|
[백준 1110번] 더하기 사이클 (0) | 2020.07.08 |
[백준 9093] 단어 뒤집기 (0) | 2020.07.02 |
[백준 11279번] 최대 힙 (0) | 2020.05.28 |
[백준 1697번] 숨바꼭질 (0) | 2020.05.22 |