Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- hackerrank
- Real or Not? NLP with Disaster Tweets
- SW Expert Academy
- 편스토랑 우승상품
- 프로그래머스 파이썬
- leetcode
- 코로나19
- AI 경진대회
- 더현대서울 맛집
- Git
- gs25
- Baekjoon
- github
- PYTHON
- ChatGPT
- 파이썬
- 데이콘
- programmers
- Kaggle
- 프로그래머스
- 편스토랑
- 금융문자분석경진대회
- ubuntu
- dacon
- 캐치카페
- Docker
- 우분투
- 맥북
- 자연어처리
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 23808번 : 골뱅이 찍기 - ㅂ (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 골뱅이 찍기 - ㅂ 입니다.
👨🏻💻 코드 ( Solution )
def golbange_print_ㅂ(N):
answer = ['' for _ in range(N * 5)]
for idx in range(N*5):
if 2 * N - 1 < idx < 2 * N + N or idx >= N * 5 - N:
answer[idx] = "@" * (N * 5)
else:
answer[idx] = f"{'@' * N}{' ' * (N * 5 - N * 2)}{'@' * N}"
return "\n".join(answer)
if __name__ == "__main__":
N = int(input())
print(golbange_print_ㅂ(N=N))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5300번 : Fill the Rowboats! (Python) (0) | 2023.01.15 |
---|---|
[BaekJoon] 5618번 : 공약수 (Python) (0) | 2023.01.14 |
[BaekJoon] 23806번 : 골뱅이 찍기 - ㅁ (Python) (2) | 2023.01.12 |
[BaekJoon] 26587번 : Reverse (Python) (0) | 2023.01.10 |
[BaekJoon] 27001번 : Bovine Birthday (Python) (0) | 2023.01.09 |
Comments