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 |
Tags
- 자연어처리
- SW Expert Academy
- PYTHON
- 캐치카페
- 더현대서울 맛집
- 맥북
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 우분투
- github
- Docker
- ubuntu
- 코로나19
- 데이콘
- ChatGPT
- 백준
- hackerrank
- dacon
- 프로그래머스
- 편스토랑 우승상품
- AI 경진대회
- gs25
- 프로그래머스 파이썬
- Git
- Baekjoon
- programmers
- leetcode
- 금융문자분석경진대회
- 편스토랑
- 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 9316번 : Hello Judge (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Hello Judge 입니다.
9316번: Hello Judge
한 줄에 하나의 Hello World, Judge i! 를 출력한다.
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def hello_judge(N):
for idx in range(1, N+1):
print(f"Hello World, Judge {idx}!")
if __name__ == "__main__":
N = int(input())
hello_judge(N=N)
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 25628번 : 햄버거 만들기 (Python) (0) | 2022.10.02 |
---|---|
[BaekJoon] 25640번 : MBTI (Python) (0) | 2022.10.01 |
[BaekJoon] 13241번 : 최소공배수 (Python) (2) | 2022.09.29 |
[BaekJoon] 18883번 : N M 찍기 (Python) (0) | 2022.09.28 |
[BaekJoon] 25166번 : 배고픈 아리의 샌드위치 구매하기 (Python) (0) | 2022.09.27 |
Comments