summaryrefslogtreecommitdiff
path: root/2016/3a.py
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-12-02 09:30:07 +0100
committertomsmeding <tom.smeding@gmail.com>2017-12-02 09:30:07 +0100
commit2c1dccf57d7ad5e25e79063dea41fd7bfa9d9ac6 (patch)
tree6c36355ef1a475f2b7cf388402afc96a16588d3d /2016/3a.py
parent2d02f553aa4cc4ded630628eccdf34f55937cee5 (diff)
Move 2016 to its own folder
Diffstat (limited to '2016/3a.py')
-rwxr-xr-x2016/3a.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/2016/3a.py b/2016/3a.py
new file mode 100755
index 0000000..adc7f60
--- /dev/null
+++ b/2016/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)