From c53cfe35c2eb034669ecd608a92a5dd23e25f856 Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Sat, 24 Jun 2023 16:16:50 +0200 Subject: [PATCH] GCVWR --- gcvwr.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 gcvwr.py diff --git a/gcvwr.py b/gcvwr.py new file mode 100644 index 0000000..4cff673 --- /dev/null +++ b/gcvwr.py @@ -0,0 +1,3 @@ +g, t, n = map(int, input().split()) +w = map(int, input().split()) +print(int((g - t) * 0.9 - sum(w)))