본문 바로가기
python-algorithm

[백준] 13410

by 무적김두칠 2021. 1. 14.

1
2
3
4
5
6
import math
a,b=map(int, input().split())
tmp=[]
for i in range(1,b+1):
    tmp.append(int (str(a*i)[::-1]))
print(max(tmp))
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 13420  (0) 2021.01.14
[백준] 13419  (0) 2021.01.14
[백준] 13304  (0) 2021.01.14
[백준] 13300  (0) 2021.01.14
[백준] 13163  (0) 2021.01.14

댓글