[Baekjoon Online Judge] 백준 2523번 별 찍기 - 13
(Python)
(글쓴날 : 2020.03.14)
* Baekjoon Online Judge, 백준 2523번 문제 Python 언어 풀이입니다.
* 소스 코드의 저작권은 글쓴이에게 있습니다.
백준 2523번 별 찍기 - 13
1) 문제
문제 링크 : https://www.acmicpc.net/problem/2523
2) 풀이 과정
예시를 보고 규칙을 찾아 별을 출력하는 문제입니다.
규칙은 1부터 문제에서 주어지는 숫자까지 별의 개수가 점점 증가하다 그 뒤로 다시 1까지 감소하는 것이며,
반복문을 이용해 문제를 해결해 주시면 되겠습니다.
3) 코드
* Python 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import sys
input = sys.stdin.readline
N = int(input())
for i in range(1, N + 1):
for j in range(i):
print("*", end="")
print()
for i in range(N - 1, 0, -1):
for j in range(i):
print("*", end="")
print()
|
'Deprecated' 카테고리의 다른 글
[Baekjoon Online Judge] 백준 10996번 별 찍기 - 21(Python) (0) | 2020.03.14 |
---|---|
[Baekjoon Online Judge] 백준 2446번 별 찍기 - 9(Python) (0) | 2020.03.14 |
[Baekjoon Online Judge] 백준 10039번 평균 점수(Python) (0) | 2020.03.14 |
[CSS] CSS 초기화(Reset) 코드 모음 (0) | 2020.03.12 |
[LeetCode] 리트코드 1266번 Minimum Time Visiting All Points(Python) (0) | 2020.03.11 |