백준 [ALGORITHM] - Javascript
2023. 2. 2. 16:37ㆍ코딩/백준 [ALGORITHM]
반응형
try:
x,y = map(list,input().split(" "))
result = ""
for i in range(len(x)):
x[i] = ord(x[i])
for j in range(len(y)):
y[j] = ord(y[j])
for z in range(len(x)):
for c in range(65,123):
if x[z] == c:
result = "NaN"
for z in range(len(y)):
for c in range(65,123):
if y[z] == c:
result = "NaN"
for i in range(len(x)):
x[i] = chr(x[i])
for j in range(len(y)):
y[j] = chr(y[j])
if result == "NaN":
print("NaN")
else:
a = ''.join(map(str,x))
b = ''.join(map(str,y))
print(int(a)-int(b))
except:
print("NaN")
반응형
'코딩 > 백준 [ALGORITHM]' 카테고리의 다른 글
백준 [ALGORITHM] - 스택 (10828) (0) | 2023.04.15 |
---|---|
백준 [ALGORITHM] - 이상한 곱셈 (1225) (0) | 2023.04.08 |
백준 [ALGORITHM] - 합분해 (2225) (0) | 2023.04.05 |
백준 [ALGORITHM] - 잃어버린 괄호 (1541) (0) | 2023.04.01 |
백준 [ALGORITHM] - 조합 (2407) (0) | 2023.02.04 |