Created
November 4, 2018 14:31
-
-
Save showyou/38fdb0258bea4e53c90207160a0155df to your computer and use it in GitHub Desktop.
abc113_b
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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