Introfor

[백준] 2908번 상수 본문

Programming_prob/BaekJoon

[백준] 2908번 상수

YongArtist 2020. 10. 6. 02:58

지금 내 수준에서 쉽게 푸는 문제들은 그냥 너무 쉬운 문제들...

1
2
3
4
5
6
def solution():
    return max(list(map(int, input()[::-1].split())))
 
 
res = solution()
print(res)
cs

 

다른 사람 코드

위 코드와 같은 시간이 걸린다,, 64ms

1
2
3
4
5
6
7
8
9
a, b = input().split()
 
= int(a[::-1]) 
= int(b[::-1])
 
if a > b : 
    print(a)
else :
    print(b)
cs

 

Comments