Skip to content

Commit

Permalink
[level 0] Title: 직각삼각형 출력하기, Time: 19.69 ms, Memory: 7.64 MB -Baekjoo…
Browse files Browse the repository at this point in the history
…nHub
  • Loading branch information
boyamie committed Jul 12, 2024
1 parent b50c5e8 commit c112e83
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# [level 0] 직각삼각형 출력하기 - 120823

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120823)

### 성능 요약

메모리: 7.64 MB, 시간: 19.69 ms

### 구분

코딩테스트 연습 > 코딩테스트 입문

### 채점결과

정확성: 100.0<br/>합계: 100.0 / 100.0

### 제출 일자

2024년 07월 12일 14:46:07

### 문제 설명

<p>"*"의 높이와 너비를 1이라고 했을 때, "*"을 이용해 직각 이등변 삼각형을 그리려고합니다. 정수 n 이 주어지면 높이와 너비가 n 인 직각 이등변 삼각형을 출력하도록 코드를 작성해보세요.</p>

<hr>

<h5>제한사항</h5>

<ul>
<li>1 ≤ <code>n</code> ≤ 10</li>
</ul>

<hr>

<h5>입출력 예</h5>

<p>입력 #1</p>
<div class="highlight"><pre class="codehilite"><code>3
</code></pre></div>
<p>출력 #1</p>
<div class="highlight"><pre class="codehilite"><code>*
**
***
</code></pre></div>
<h5>입출력 예 설명</h5>

<p>입출력 예 #1</p>

<ul>
<li>n이 3이므로 첫째 줄에 * 1개, 둘째 줄에 * 2개, 셋째 줄에 * 3개를 출력합니다.</li>
</ul>


> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
n = int(input())
for i in range(1,n+1):
print('*'*i)

0 comments on commit c112e83

Please sign in to comment.