-
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.02 ms, Memory: 10.3 MB -Baekj…
…oonHub
- Loading branch information
Showing
2 changed files
with
92 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,85 @@ | ||
# [level 0] 두 수의 연산값 비교하기 - 181938 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181938) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.3 MB, 시간: 0.02 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 12일 14:42:34 | ||
|
||
### 문제 설명 | ||
|
||
<p>연산 ⊕는 두 정수에 대한 연산으로 두 정수를 붙여서 쓴 값을 반환합니다. 예를 들면 다음과 같습니다.</p> | ||
|
||
<ul> | ||
<li>12 ⊕ 3 = 123</li> | ||
<li>3 ⊕ 12 = 312</li> | ||
</ul> | ||
|
||
<p>양의 정수 <code>a</code>와 <code>b</code>가 주어졌을 때, <code>a</code> ⊕ <code>b</code>와 <code>2 * a * b</code> 중 더 큰 값을 return하는 solution 함수를 완성해 주세요.</p> | ||
|
||
<p>단, <code>a</code> ⊕ <code>b</code>와 <code>2 * a * b</code>가 같으면 <code>a</code> ⊕ <code>b</code>를 return 합니다.</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>1 ≤ <code>a</code>, <code>b</code> < 10,000</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>a</th> | ||
<th>b</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>2</td> | ||
<td>91</td> | ||
<td>364</td> | ||
</tr> | ||
<tr> | ||
<td>91</td> | ||
<td>2</td> | ||
<td>912</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<h5>입출력 예 설명</h5> | ||
|
||
<p>입출력 예 #1</p> | ||
|
||
<ul> | ||
<li><code>a</code> ⊕ <code>b</code> = 291 이고, <code>2 * a * b</code> = 364 입니다. 둘 중 더 큰 값은 364 이므로 364를 return 합니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #2</p> | ||
|
||
<ul> | ||
<li><code>a</code> ⊕ <code>b</code> = 912 이고, <code>2 * a * b</code> = 364 입니다. 둘 중 더 큰 값은 912 이므로 912를 return 합니다.</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<p>※ 2023년 04월 27일 입출력 예 설명이 수정되었습니다.</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,7 @@ | ||
def solution(a, b): | ||
lt = [a, b] | ||
link = ''.join(map(str, lt)) | ||
if int(link) == 2*a*b: | ||
return link | ||
else: | ||
return max([int(link), 2*a*b]) |