반응형
츄르사려고 코딩하는 코집사입니다.
1. [Softeer] Softeer 연탄 배달의 시작 파이썬(Python)
1) 문제 제목 : 연탄 배달의 시작
2) 문제 출처
https://softeer.ai/practice/7626
2. 풀이
- 반복문을 통해서, i번째와 i+1번째의 차를 구한 후, 그 차의 최소값을 구한다.
- 그리고 나서, 그 최소값을 가진 인덱스의 개수를 구하여 출력하면 된다.
3. 소스 코드
import sys
input = sys.stdin.readline
T = int(input())
tempList = list(map(int, input().split()))
MIN_NUM = 1000001
for i in range(T-1) :
MIN_NUM = min(MIN_NUM, tempList[i+1] - tempList[i])
cnt = 0
for i in range(T-1) :
if tempList[i+1] - tempList[i] == MIN_NUM :
cnt += 1
print(cnt)
반응형
'알고리즘 > Softeer' 카테고리의 다른 글
[Softeer] Softeer [한양대 HCPC 2023] Recovering the Region 파이썬(Python) (0) | 2024.11.05 |
---|---|
[Softeer] Softeer 나무 심기 파이썬(Python) (0) | 2024.11.05 |
[Softeer] Softeer [한양대 HCPC 2023] Tren del Fin del Mundo 파이썬(Python) (0) | 2024.11.05 |
[Softeer] Softeer 연탄 나무 공격 파이썬(Python) (0) | 2024.10.30 |
[Softeer] Softeer [한양대 HCPC 2023] 개표 파이썬(Python) (0) | 2024.10.29 |
[Softeer] Softeer 효도의 시작 파이썬(Python) (0) | 2024.10.29 |
[Softeer] Softeer 나무 출력 파이썬(Python) (0) | 2024.10.29 |
[Softeer] Softeer 메리 크리스마스 파이썬(Python) (0) | 2024.10.29 |
최근댓글