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
- ChatGPT
- 편스토랑 우승상품
- 파이썬
- Git
- AI 경진대회
- ubuntu
- hackerrank
- 편스토랑
- 백준
- Baekjoon
- 데이콘
- github
- PYTHON
- 자연어처리
- 금융문자분석경진대회
- gs25
- 프로그래머스
- 코로나19
- 캐치카페
- programmers
- dacon
- 더현대서울 맛집
- Docker
- 우분투
- 맥북
- leetcode
- 프로그래머스 파이썬
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- Kaggle
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 26574번 : Copier (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Copier 입니다.
26574번: Copier
Your copier broke down last week, and you need to copy a list of numbers for a class project due tomorrow! Luckily, you can use your computer to copy the numbers for you. Given a list of numbers, each on their own line, print out the number, a space, and t
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def copier(number_list):
for number in number_list:
print(f"{number} {number}")
if __name__ == "__main__":
number_list = []
for _ in range(int(input())):
number_list.append(int(input()))
copier(number_list=number_list)
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] 6825번 : Body Mass Index (Python) (0) | 2022.12.29 |
---|---|
[BaekJoon] 26711번 : A+B (Python) (2) | 2022.12.28 |
[BaekJoon] 5357번 : Dedupe (Python) (0) | 2022.12.26 |
[BaekJoon] 26545번 : Reverse (Python) (0) | 2022.12.24 |
[BaekJoon] 10189번 : Hook (Python) (0) | 2022.12.22 |
Comments