본문 바로가기
python-algorithm

백준 32025 체육은 수학과목 입니다

by 무적김두칠 2024. 7. 15.

https://www.acmicpc.net/problem/32025

 

1
2
3
4
5
6
7
8
9
10
def sol(h, w):
    return min(h, w) * 100 // 2
 
 
if __name__ == '__main__':
    h = int(input())
    w = int(input())
 
    print(sol(h, w))
 
cs
반응형

댓글