-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 0] Title: 이어 붙인 수, Time: 0.04 ms, Memory: 10.2 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# [level 0] 이어 붙인 수 - 181928 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181928?language=python3) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.2 MB, 시간: 0.04 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2025년 01월 11일 22:58:08 | ||
|
||
### 문제 설명 | ||
|
||
<p>정수가 담긴 리스트 <code>num_list</code>가 주어집니다. <code>num_list</code>의 홀수만 순서대로 이어 붙인 수와 짝수만 순서대로 이어 붙인 수의 합을 return하도록 solution 함수를 완성해주세요.</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>2 ≤ <code>num_list</code>의 길이 ≤ 10</li> | ||
<li>1 ≤ <code>num_list</code>의 원소 ≤ 9</li> | ||
<li><code>num_list</code>에는 적어도 한 개씩의 짝수와 홀수가 있습니다.</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>num_list</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>[3, 4, 5, 2, 1]</td> | ||
<td>393</td> | ||
</tr> | ||
<tr> | ||
<td>[5, 7, 8, 3]</td> | ||
<td>581</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<h5>입출력 예 설명</h5> | ||
|
||
<p>입출력 예 #1</p> | ||
|
||
<ul> | ||
<li>홀수만 이어 붙인 수는 351이고 짝수만 이어 붙인 수는 42입니다. 두 수의 합은 393입니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #2</p> | ||
|
||
<ul> | ||
<li>홀수만 이어 붙인 수는 573이고 짝수만 이어 붙인 수는 8입니다. 두 수의 합은 581입니다.</li> | ||
</ul> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
def solution(num_list): | ||
even=[] | ||
odd=[] | ||
for i in num_list: | ||
if i%2 == 0: | ||
even.append(i) | ||
else: | ||
odd.append(i) | ||
t_even = ''.join(map(str,even)) | ||
t_odd = ''.join(map(str,odd)) | ||
answer = int(t_even) + int(t_odd) | ||
return answer |