From b3ef9dc347c6730a97f9ae3e832a2a552eeb76a9 Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Fri, 27 Mar 2026 23:45:30 +0900 Subject: [PATCH] baekjoon 20260327 --- code_study/Baekjoon/python/16204.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code_study/Baekjoon/python/16204.py diff --git a/code_study/Baekjoon/python/16204.py b/code_study/Baekjoon/python/16204.py new file mode 100644 index 0000000..0ea180c --- /dev/null +++ b/code_study/Baekjoon/python/16204.py @@ -0,0 +1 @@ +print((lambda n,m,k:min(m,k) + min(n-m,n-k))(*list(map(int, input().split())))) \ No newline at end of file