2025 S1 - Positioning Peter's Paintings

Easyimplementation

1 Solution Available

Solution 1

PYTHON
1# By Daniel Zhang, Pinetree Secondary
2
3b1, h1, b2, h2 = map(int, input().split())
4
5widest = max(b1, b2)
6highest = max(h1, h2)
7
8print(min(2 * (h1 + h2 + widest), 2 * (b1 + b2 + highest)))

Test Cases

Select a test case to view input and output