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
- python
- FDS
- github
- pep8
- GCP
- Matplotlib
- 완전탐색
- FastAPI
- pytorch
- docker
- torchserve
- 백준
- autoencoder
- NaverAItech
- GIT
- 코딩테스트
- 네이버AItech
- vscode
- DeepLearning
- GitHub Action
- 프로그래머스
- Kubernetes
- PytorchLightning
- Kaggle
- 알고리즘
- datascience
- wandb
- leetcode
- rnn
- NLP
Archives
- Today
- Total
Sangmun
백준 14624번 - 전북대학교 본문
https://www.acmicpc.net/problem/14624
ㅈ 문자를 찍는 과정에서 계속 '잘못된 출력형식입니다.' 라고 나오길래 뭐가 문제인지 봤는데 아래와 같은 사항을 고려하지 않고 코드를 짜서 그렇다.
https://www.acmicpc.net/board/search/all/problem/14624
import sys
input = sys.stdin.readline
a = int(input())
if a % 2 == 0:
print('I LOVE CBNU')
else:
print('*'*a)
print('*'.center(a))
for i in range(1,a,2):
tmp = '*'+' '*i+'*'
print(tmp.center(a))
"""
ㅈ 문양을 출력할때 계속 출력형식이 잘못되었다고 해서 어느 부분이 잘못된건지 찾지 못해 애먹었는데
불필요한 공백이 있으면 안되더군요 ;
혹시 저와 같이 헤매시는 분들께 도움이 되셨길 바랍니다.
"""
'알고리즘 > 백준' 카테고리의 다른 글
백준 14500번 테트로미노 (1) | 2022.10.08 |
---|---|
백준 11403번 경로찾기 (0) | 2022.10.01 |
백준 1766번 문제집 (0) | 2022.09.05 |
백준 1774 우주신과의 교감 (0) | 2022.08.30 |
백준 13913번 숨바꼭질 4 (0) | 2022.08.30 |
Comments