summaryrefslogtreecommitdiff
path: root/2016/3b.py
diff options
context:
space:
mode:
Diffstat (limited to '2016/3b.py')
-rwxr-xr-x2016/3b.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/2016/3b.py b/2016/3b.py
new file mode 100755
index 0000000..ed2e87f
--- /dev/null
+++ b/2016/3b.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+
+import sys, re
+
+lines=[[int(x) for x in re.findall(r"\d+",l)] for l in sys.stdin.read().split("\n")[:-1]]
+
+count=0
+for i in range(len(lines)//3):
+ for j in range(3):
+ a,b,c=[l[j] for l in lines[3*i:3*i+3]]
+ if a+b+c>2*max(a,b,c):
+ count+=1
+
+print(count)