Skip to content

Instantly share code, notes, and snippets.

@ninoseki
Created July 15, 2012 06:15
Show Gist options
  • Save ninoseki/3115316 to your computer and use it in GitHub Desktop.
Save ninoseki/3115316 to your computer and use it in GitHub Desktop.
Codefoces#129(Dv2.A)
n = gets.chomp.to_i
times = gets.chomp.split(" ").map{|e| e.to_i}
min = times.min
if times.count(min) == 1
puts times.index(min) + 1
else
puts "Still Rozdil"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment