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
- xcz.kr
- cryptography
- 정렬
- HackCTF
- CTF
- Incognito
- 인코그니토
- SuNiNaTas
- C
- Database
- 백준
- writeup
- 그리디 알고리즘
- Text
- 써니나타스
- php
- 사칙연산
- Web
- Digital Forensics
- Network
- 구현
- Web Hacking
- Python
- 문자열
- Forensics
- MySQL
- misc
- wargame
- N0Named
- 수학
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5354번 J박스 본문
[Baekjoon/Python3] 5354번 J박스
for i in range(int(input())):
n = int(input())
if n < 3:
for i in range(n):
print('#' * n)
print()
else:
print('#' * n)
for i in range(n - 2):
print('#' + 'J' * (n - 2) + '#')
print('#' * n + '\n')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5361번 전투 드로이드 가격 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5355번 화성 수학 (0) | 2020.12.05 |
[Baekjoon/Python3] 5347번 LCM (0) | 2020.12.05 |
[Baekjoon/Python3/Text] 5339번 콜센터 (0) | 2020.12.05 |
[Baekjoon/Python3/Text] 5338번 마이크로소프트 로고 (0) | 2020.12.05 |
Comments