728x90
반응형
s = input()
if '0x' in s:
print(int(s, 16))
elif s[0] == '0':
print(int(s, 8))
else:
print(int(s))
사칙연산 & 문자열 문제이다.
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 12174번 #include <Google I/O.h>(python) (0) | 2021.02.26 |
---|---|
백준 알고리즘 11944번 NN(python) (0) | 2021.02.26 |
백준 알고리즘 11575번 Affine Cipher(python) (0) | 2021.02.26 |
백준 알고리즘 15829번 Hashing(python) (0) | 2021.02.26 |
백준 알고리즘 13702번 이상한 술집(python) (0) | 2021.02.26 |