finish icpc 2018 problem A

This commit is contained in:
Xevion
2019-08-24 18:22:41 -05:00
parent 3297bcd237
commit 5fad57633b

View File

@@ -21,7 +21,8 @@ def main():
listeners.append(parse(dataset))
spy = listeners.pop(0)
distances = sorted()
distances = sorted(list(map(lambda x : dist(spy, x), listeners)))
print(int(distances[:2][-1]))
if __name__ == "__main__":
main()