[Baekjoon Online Judge] 백준 2908번 상수
(Python)
(글쓴날 : 2020.03.22)
* Baekjoon Online Judge, 백준 2908번 문제 Python 언어 풀이입니다.
* 소스 코드의 저작권은 글쓴이에게 있습니다.
백준 2908번 상수
1) 문제
문제 링크 : https://www.acmicpc.net/problem/2908
2) 풀이 과정
두 숫자를 각각 거꾸로 한 값을 비교해 큰 수를 출력하는 문제입니다.
입력받은 두 숫자를 각각 거꾸로 바꾼 뒤, 조건문을 사용해 두 숫자를 비교하여 큰 수를 출력해 주시면 되겠습니다.
3) 코드
* Python 코드
1
2
3
4
5
6
7
8
9
10
|
import sys
input = sys.stdin.readline
a, b = input().split()
a = int("".join(a)[::-1])
b = int("".join(b)[::-1])
if a > b:
print(a)
else:
print(b)
|
'Deprecated' 카테고리의 다른 글
[Baekjoon Online Judge] 백준 2941번 크로아티아 알파벳(Python) (0) | 2020.03.22 |
---|---|
[Baekjoon Online Judge] 백준 5622번 다이얼(Python) (0) | 2020.03.22 |
[Baekjoon Online Judge] 백준 1152번 단어의 개수(Python) (0) | 2020.03.22 |
[Baekjoon Online Judge] 백준 1157번 단어 공부(Python) (0) | 2020.03.22 |
[Baekjoon Online Judge] 백준 2675번 문자열 반복(Python) (0) | 2020.03.22 |