Skip to content

Instantly share code, notes, and snippets.

@binhngoc17
Created December 15, 2014 00:28
Show Gist options
  • Save binhngoc17/f8078a0a84e3301bd12a to your computer and use it in GitHub Desktop.
Save binhngoc17/f8078a0a84e3301bd12a to your computer and use it in GitHub Desktop.
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