반응형
문제 정보
제출 코드
def arithMetic(num):
if(num<100):
return num
else:
tmp = str(num)
a1 = int(tmp[1])-int(tmp[0])
a2 = int(tmp[2])-int(tmp[1])
if(a1==a2):
return num
else:
return 0
n = []
count = 0
if_count = int(input())
while(True):
count+=1
if(count>if_count): break
tmp = arithMetic(count)
if(tmp!=0): n.append(tmp)
print(len(n))
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 11720번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 11654번 Python (0) | 2021.10.04 |
[백준 알고리즘] 4673번 Python (0) | 2021.10.03 |
[백준 알고리즘] 15596번 Python (0) | 2021.10.03 |
[백준 알고리즘] 4344번 Python (0) | 2021.10.03 |
댓글