From 0bd5847b214d391906283dd46c26c1cbd08d3f63 Mon Sep 17 00:00:00 2001 From: yenru0 Date: Fri, 2 Aug 2024 20:24:00 +0900 Subject: [PATCH] complete 14729.py --- zeta_python/completed/14729.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 zeta_python/completed/14729.py diff --git a/zeta_python/completed/14729.py b/zeta_python/completed/14729.py new file mode 100644 index 0000000..1aa6905 --- /dev/null +++ b/zeta_python/completed/14729.py @@ -0,0 +1,3 @@ +import sys +input = sys.stdin.readline +[print(f"{x:.3f}")for x in list(sorted(float(input())for _ in range(int(input()))))[:7]] \ No newline at end of file