https://www.acmicpc.net/problem/2562
여러 줄의 정수 입력받기
|
n = int(input()) # 입력 받을 정수 개수 |
|
li = [int(input()) for _ in range(n)] |
출처: https://bio-info.tistory.com/157
코드:
# BOJ_2562
# 입력 꼭 기억하기
numbers = [int(input()) for _ in range(9)]
max_num = max(numbers)
print(max_num)
index_num = numbers.index(max_num)
print(index_num + 1)
'Computer Science > Algorithm' 카테고리의 다른 글
[백준] 1654번 랜선 자르기, 시간초과 - 이분탐색(풀이 암기) (0) | 2023.01.25 |
---|---|
[백준] 10816번 숫자 카드2, 시간 초과 - 이진탐색 + 알파 (0) | 2023.01.21 |
[백준] 1676번 팩토리얼 0의 개수 (0) | 2023.01.12 |
[백준] 1764번 듣보잡, 시간초과 (0) | 2023.01.11 |
[백준] 1181번 단어정렬 - 시간초과 (0) | 2023.01.09 |