Skip to content

Instantly share code, notes, and snippets.

@showyou
Created November 4, 2018 14:31
Show Gist options
  • Select an option

  • Save showyou/38fdb0258bea4e53c90207160a0155df to your computer and use it in GitHub Desktop.

Select an option

Save showyou/38fdb0258bea4e53c90207160a0155df to your computer and use it in GitHub Desktop.
abc113_b
number = int(input())
input_str = input().split()
temp = int(input_str[0])
goal = int(input_str[1])
Hn = list(map(int, input().split()))
avg_temp = [abs(temp - (Hn * 0.006) - goal) for Hn in Hn]
print((avg_temp.index(min(avg_temp))) + 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment