From affdfff874cd50899e1ac2a4e886552fb9440ecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=ED=98=84?= <157342647+boyamie@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:42:36 +0900 Subject: [PATCH] =?UTF-8?q?[level=200]=20Title:=20=EB=91=90=20=EC=88=98?= =?UTF-8?q?=EC=9D=98=20=EC=97=B0=EC=82=B0=EA=B0=92=20=EB=B9=84=EA=B5=90?= =?UTF-8?q?=ED=95=98=EA=B8=B0,=20Time:=200.02=20ms,=20Memory:=2010.3=20MB?= =?UTF-8?q?=20-BaekjoonHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../README.md" | 85 +++++++++++++++++++ ...04\352\265\220\355\225\230\352\270\260.py" | 7 ++ 2 files changed, 92 insertions(+) create mode 100644 "\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/README.md" create mode 100644 "\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260.py" diff --git "a/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/README.md" "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/README.md" new file mode 100644 index 0000000..82f6131 --- /dev/null +++ "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/README.md" @@ -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
합계: 100.0 / 100.0 + +### 제출 일자 + +2024년 06월 12일 14:42:34 + +### 문제 설명 + +

연산 ⊕는 두 정수에 대한 연산으로 두 정수를 붙여서 쓴 값을 반환합니다. 예를 들면 다음과 같습니다.

+ + + +

양의 정수 ab가 주어졌을 때, ab2 * a * b 중 더 큰 값을 return하는 solution 함수를 완성해 주세요.

+ +

단, ab2 * a * b가 같으면 ab를 return 합니다.

+ +
+ +
제한사항
+ + + +
+ +
입출력 예
+ + + + + + + + + + + + + + + + + + +
abresult
291364
912912
+
+ +
입출력 예 설명
+ +

입출력 예 #1

+ + + +

입출력 예 #2

+ + + +
+ +

※ 2023년 04월 27일 입출력 예 설명이 수정되었습니다.

+ + +> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges \ No newline at end of file diff --git "a/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260.py" "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260.py" new file mode 100644 index 0000000..2194ccf --- /dev/null +++ "b/\355\224\204\353\241\234\352\267\270\353\236\230\353\250\270\354\212\244/0/181938.\342\200\205\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260/\353\221\220\342\200\205\354\210\230\354\235\230\342\200\205\354\227\260\354\202\260\352\260\222\342\200\205\353\271\204\352\265\220\355\225\230\352\270\260.py" @@ -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]) \ No newline at end of file