Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Database
- xcz.kr
- Python
- 인코그니토
- wargame
- php
- 백준
- Forensics
- misc
- writeup
- Incognito
- Text
- MySQL
- HackCTF
- Network
- Web Hacking
- 그리디 알고리즘
- cryptography
- 써니나타스
- CTF
- C
- 수학
- 정렬
- 사칙연산
- SuNiNaTas
- 구현
- 문자열
- Web
- N0Named
- Digital Forensics
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2445번 별 찍기 - 8 본문
[Baekjoon/Python3] 2445번 별 찍기 - 8
n = int(input())
space = (n - 1) * 2
a = 1
for i in range(n):
print('*' * a + ' ' * space + '*' * a)
space -= 2
a += 1
a = n - 1
space = 2
for i in range(n):
print('*' * a + ' ' * space + '*' * a)
space += 2
a -= 1
n = int(input())
space = (n - 1) * 2
a = 1
for i in range(n):
print('*' * a + ' ' * space + '*' * a)
space -= 2
a += 1
a = n - 1
space = 2
for i in range(n):
print('*' * a + ' ' * space + '*' * a)
if a == 1:
break
space += 2
a -= 1
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2455번 지능형 기차 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 2446번 별 찍기 - 9 (0) | 2020.12.03 |
[Baekjoon/Python3] 2444번 별 찍기 - 7 (0) | 2020.12.03 |
[Baekjoon/Python3] 2443번 별 찍기 - 6 (0) | 2020.12.03 |
[Baekjoon/Python3] 2442번 별 찍기 - 5 (0) | 2020.12.03 |
Comments