일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- nav2 first-time robot setup guide
- Python
- Nav2 document
- nav2 tutorial
- Foxy tutorial
- docker foxy
- error
- humble development guides
- ros2 configuring environment
- development guides
- nav2 getting started
- nav2 dev contatiner
- foxy nav2
- ros2 development guides
- CodeUp
- ros2 튜토리얼 환경설정
- ros2 foxy docker
- ros2 remapping
- CODEUP 6073
- first-time robot setup guide
- ros2 환경설정
- ros2 튜토리얼
- nav2 설치
- nav2 튜토리얼
- nav2 development guides
- ROS FOXY 튜토리얼
- ros2 foxy tutorial
- humble 환경설정
- 코드업
- nav2 development guides
Archives
- Today
- Total
BAN2ARU
[백준/Python] 2562 최댓값 본문
반응형
https://www.acmicpc.net/problem/2562
- 정답
import sys
numbers = [int(sys.stdin.readline()) for _ in range(9)]
print(max(numbers), (numbers.index(max(numbers)))+1, sep='\n')
728x90
'Coding Test > BaekJoon' 카테고리의 다른 글
[백준/Python] 4673번 : 셀프 넘버 (0) | 2022.10.19 |
---|---|
[백준/Python] 1065번 : 한수 (0) | 2022.10.17 |
[백준/Python] 1110번 : 더하기 사이클 (0) | 2022.09.19 |
[백준/python] 10951번 : A+B - 4 (0) | 2022.09.14 |
[백준/Python] 10952번 : A+B - 5 (0) | 2022.09.14 |
Comments