본문 바로가기
CODE/Python

백준 2562 최댓값 Python

by zerozero\base 2021. 7. 18.

for 함수와 append를 활용하여 간단히 여러줄의 input값을 하나의 리스트로 받을 수 있다.

n = []
for i in range(1, 10):
    n.append(int(input()))
    if i < 10: continue
print(max(n))
print(n.index(max(n))+1)

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

'CODE > Python' 카테고리의 다른 글

프로그래머스 완주하지 못한 선수 Python  (0) 2021.07.29
코드업 6098 성실한 개미 Python  (0) 2021.07.28
백준 1110 더하기 사이클 Python  (0) 2021.07.18
백준 10951 A+B Python  (0) 2021.07.16
input() 함수 시간초과  (0) 2021.07.14

댓글