새소식

⌨️ Algorithms/백준

[Python] 백준 2562번_최댓값

2022. 7. 8. 10:59

  • -

https://www.acmicpc.net/problem/2562

 

2562번: 최댓값

9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오. 예를 들어, 서로 다른 9개의 자연수 3, 29, 38, 12, 57, 74, 40, 85, 61 이 주어

www.acmicpc.net

 

num_list = []
for i in range(9):
  num_list.append(int(input()))

print(max(num_list))
print(num_list.index(max(num_list))+1)

 

Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다!