-
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.00 ms, Memory: 10 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
77 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,74 @@ | ||
# [level 0] 나이 출력 - 120820 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120820) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10 MB, 시간: 0.00 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩테스트 입문 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 05월 23일 01:57:40 | ||
|
||
### 문제 설명 | ||
|
||
<p>머쓱이는 선생님이 몇 년도에 태어났는지 궁금해졌습니다. 2022년 기준 선생님의 나이 <code>age</code>가 주어질 때, 선생님의 출생 연도를 return 하는 solution 함수를 완성해주세요</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>0 < age ≤ 120</li> | ||
<li>나이는 태어난 연도에 1살이며 매년 1월 1일마다 1살씩 증가합니다. </li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>age</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>40</td> | ||
<td>1983</td> | ||
</tr> | ||
<tr> | ||
<td>23</td> | ||
<td>2000</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<h5>입출력 예 설명</h5> | ||
|
||
<p>입출력 예 #1</p> | ||
|
||
<ul> | ||
<li>2022년 기준 40살이므로 1983년생입니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #2</p> | ||
|
||
<ul> | ||
<li>2022년 기준 23살이므로 2000년생입니다.</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<p>※ 공지 - 2024년 3월 14일 문제 지문이 보다 명확하게 수정되었습니다.</p> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, 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,3 @@ | ||
def solution(age): | ||
answer = 2022-age+1 | ||
return answer |