Guest User

Untitled

a guest
Oct 24th, 2012
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. #!/usr/bin/python
  2. #-*- encoding: Utf-8 -*-
  3. import sys
  4.  
  5. N = int(raw_input())
  6.  
  7. if N >= 1000: # On est dans un test de performances ?
  8.    
  9.     for i in xrange(N):
  10.         foo = raw_input().split(' ')
  11.         foo = (int(foo[0]), int(foo[1]))
  12.    
  13.     for i in xrange(int(raw_input())):
  14.         foo = raw_input().split(' ')
  15.         foo = (int(foo[0]), int(foo[1]))
  16.    
  17.     # À cause de la limite de temps,
  18.     # nous n'arriverons pas jusqu'ici.
  19.  
  20. else:
  21.     # [votre algorithme ici]
Advertisement
Add Comment
Please, Sign In to add comment