Skip to content

Instantly share code, notes, and snippets.

@IKKO-Ohta
Created July 21, 2017 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IKKO-Ohta/408a6135b1dc885a599b049bd803ccbc to your computer and use it in GitHub Desktop.
Save IKKO-Ohta/408a6135b1dc885a599b049bd803ccbc to your computer and use it in GitHub Desktop.
N = int(input())
A = [(int(x),i+1) for i,x in zip(range(N),input().split())]
A.sort(reverse=True)
[print(x[1]) for x in A]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment