solution.py 915 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/usr/bin/python3
  2. import sys
  3. import re
  4. import math
  5. def part1():
  6. print('part 1')
  7. times, distances = [re.split(r'\s+', line.strip()) for line in sys.stdin.readlines()]
  8. pairs = list(zip([int(n) for n in times[1:]], [int(n) for n in distances[1:]]))
  9. print(times)
  10. print(distances)
  11. print(pairs)
  12. product = 1
  13. for time, dist in pairs:
  14. ways = 0
  15. for h in range(time):
  16. reach = h * (time - h)
  17. if reach > dist:
  18. ways += 1
  19. print(ways)
  20. product *= ways
  21. print(product)
  22. def part2():
  23. print('part 2')
  24. time, dist = [int(line.split(':')[1].replace('\n', '').replace(' ', '')) for line in sys.stdin.readlines()]
  25. print(time, dist)
  26. ways = 0
  27. for h in range(time):
  28. reach = h * (time - h)
  29. if reach > dist:
  30. ways += 1
  31. print(ways)
  32. if sys.argv[1] in '1':
  33. part1()
  34. else:
  35. part2()