From 46ff9fcf5e3f922f8f110bd3931c732d25d371da Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Sun, 12 Apr 2026 20:21:14 +0900 Subject: [PATCH] baekjoon 20260412 --- code_study/Baekjoon/python/4766.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code_study/Baekjoon/python/4766.py diff --git a/code_study/Baekjoon/python/4766.py b/code_study/Baekjoon/python/4766.py new file mode 100644 index 0000000..858ff07 --- /dev/null +++ b/code_study/Baekjoon/python/4766.py @@ -0,0 +1,2 @@ +temp = list(map(float, iter(input, "999"))) +print("\n".join([f"{temp[i+1]-temp[i]:.2f}" for i in range(len(temp)-1)])) \ No newline at end of file