solution F icpc 2018

This commit is contained in:
Xevion
2019-08-24 20:51:10 -05:00
parent ca2b4f1848
commit d791e8bdd9
4 changed files with 45 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ def main():
# Parse inputs
inputs = [list(map(float, open(path).read().split())) for path in inputs]
# Process inputs and print outputs
print('\n'.join(map(lambda item : process(*item), inputs)))
print('\n{}\n'.format('-' * 10).join(map(lambda item : process(*item), inputs)))
if __name__ == "__main__":
main()