Advertisement
Guest User

Untitled

a guest
Aug 7th, 2010
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. #! /usr/bin/python
  2. # -*- coding: utf-8 -*-
  3.  
  4. # Modadicto
  5. # idea por Marcos
  6.  
  7. import sys
  8.  
  9. A_TOTAL = 700.0
  10. B_TOTAL = 300.0
  11.  
  12. # En el primer turno, va al feudo A.
  13. print "A"
  14. sys.stdout.flush()
  15.  
  16.  
  17. while(True):
  18.     # En los turnos subsiguientes, va al feudo que haya dado más dinero a
  19.     # sus familias en el turno anterior (individualmente, claro).
  20.     a,b = sys.stdin.readline().strip().split(" ")
  21.     print "A" if (A_TOTAL/int(a))>(B_TOTAL/int(b)) else "B"
  22.     sys.stdout.flush()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement