We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f497e5 commit 0bf52faCopy full SHA for 0bf52fa
code_place/[3051] 별찍기1/README.md
@@ -0,0 +1,39 @@
1
+# [3051] 별찍기1
2
+### 채점 결과
3
+Accepted
4
+### 제출 일자
5
+2026년 03월 25일 14:17:27
6
+### 성능 요약[추후 구현 예정]
7
+- 메모리: N/A KB
8
+- 시간: N/A ms
9
+---
10
+### 문제 링크
11
+https://code.pusan.ac.kr/problem/3051
12
+### 난이도
13
+매우 쉬움
14
+### 문제 설명
15
+아래와 같이 출력하는 프로그램을작성하시오.
16
+### 입력
17
+없음.
18
+### 출력
19
+*****************************
20
+### 예제 입력/출력
21
+**예제 입력 1**
22
+```
23
+UNKNOWN
24
25
+**예제 출력 1**
26
27
+*****
28
+****
29
+***
30
+**
31
+*
32
33
34
35
36
37
+### 제약 사항
38
+- 시간 제한 1000ms
39
+- 메모리 제한 256mb
code_place/[3051] 별찍기1/solution.py
@@ -0,0 +1,4 @@
+for i in range(5):
+ print("*" * (5-i))
+for i in range(1, 5):
+ print("*" * (1+i))
0 commit comments