baekjoon 20260412

This commit is contained in:
songyc macbook 2026-04-12 20:21:14 +09:00
parent 120de20769
commit 46ff9fcf5e

View File

@ -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)]))