11-09 09:15
Notice
Recent Posts
Recent Comments
관리 메뉴

BAN2ARU

[백준/Python] 2562 최댓값 본문

Coding Test/BaekJoon

[백준/Python] 2562 최댓값

밴나루 2022. 10. 8. 19:23
반응형

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

 

2562번: 최댓값

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

www.acmicpc.net

 

- 정답

import sys

numbers = [int(sys.stdin.readline()) for _ in range(9)]

print(max(numbers), (numbers.index(max(numbers)))+1, sep='\n')
728x90
Comments