From 6a0325b3ab8e4680de8b4786ada721a1e671157c Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 9 Dec 2016 18:42:45 +0100 Subject: Initial --- 3b.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 3b.py (limited to '3b.py') diff --git a/3b.py b/3b.py new file mode 100755 index 0000000..ed2e87f --- /dev/null +++ b/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) -- cgit v1.2.3-54-g00ecf