Created
December 15, 2014 00:28
-
-
Save binhngoc17/f8078a0a84e3301bd12a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
N = int(sys.stdin.readline()) | |
radiuses = [int(i) for i in sys.stdin.readline().replace('\n', '').split(' ')] | |
print radiuses | |
M = int(sys.stdin.readline()) | |
points = [] | |
for i in range(M): | |
points.append( | |
[int(i) for i in sys.stdin.readline().replace('\n', '').split(' ')] | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment