Submission #924041

# Submission time Handle Problem Language Result Execution time Memory
924041 2024-02-08T10:14:38 Z Danusan Best Place (NOI17_bestplace) Python 2
0 / 100
9 ms 3164 KB
import math

def main():
  num=int(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[x[i]]=xval.get(x[i],0) + abs(x[i]-x[j])
      xval[x[j]]=xval.get(x[j],0) + abs(x[i]-x[j])
  for i in range(num):
    for j in range(i+1,num):
      yval[y[i]]= yval.get(y[i],0) + abs(y[i]-y[j])
      yval[y[j]]= yval.get(y[j],0) + 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 7 ms 3164 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 3164 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 3164 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 9 ms 3164 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 3164 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 3164 KB Unexpected end of file - int64 expected
2 Halted 0 ms 0 KB -