python-algorithm
[백준] 16204
무적김두칠
2020. 12. 17. 10:26
1
2
|
N,M,K=map(int,input().split())
print(min(M,K)+min(N-M,N-K))
|
cs |
반응형