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 |
반응형
'python-algorithm' 카테고리의 다른 글
leetcode 3270. Find the Key of the Numbers (0) | 2024.09.02 |
---|---|
백준 31994 강당 대관 (0) | 2024.07.15 |
백준 30979 유치원생 파댕이 돌보기 (0) | 2024.06.19 |
leetcode 2000. Reverse Prefix of Word (0) | 2024.05.02 |
leetcode 3131. Find the Integer Added to Array I (0) | 2024.04.30 |
댓글