summaryrefslogtreecommitdiff
path: root/3a.py
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-12-09 18:42:45 +0100
committertomsmeding <tom.smeding@gmail.com>2016-12-09 18:42:45 +0100
commit6a0325b3ab8e4680de8b4786ada721a1e671157c (patch)
treeeb0367379d1e9dc66913f79d646ed7c3c908f9a9 /3a.py
Initial
Diffstat (limited to '3a.py')
-rwxr-xr-x3a.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/3a.py b/3a.py
new file mode 100755
index 0000000..adc7f60
--- /dev/null
+++ b/3a.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python3
+
+import sys, re
+
+count=0
+for line in sys.stdin:
+ a,b,c=[int(x) for x in re.findall(r"\d+",line)]
+ if a+b+c>2*max(a,b,c):
+ count+=1
+
+print(count)