Submission #924027

# Submission time Handle Problem Language Result Execution time Memory
924027 2024-02-08T09:52:58 Z Danusan Best Place (NOI17_bestplace) Python 3
0 / 100
12 ms 3228 KB
import math
def main():
  num=input()
  x=[]
  y=[]
  xval={}
  yval={}
  for i in range(num):
    xn = int(input())
    yn =int(input())
    x.append(xn)
    y.append(yn)
  for i in range(num):
    for j in range(i+1,num):
      xval[i]=xval.get(0,i) + abs(x[i]-x[j])
      xval[j]=xval.get(0,j) + abs(x[i]-x[j])
  for i in range(num):
    for j in range(i+1,num):
      yval[i]= yval.get(0,i) + abs(y[i]-y[j])
      yval[j]= yval.get(0,j) + abs(y[i]-y[j])
  print [min(xval, key=xval.get),min(yval, key=yval.get)]
  return 0
# Verdict Execution time Memory Grader output
1 Incorrect 12 ms 2908 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 2988 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 2908 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 12 ms 3228 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 2908 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 2908 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -