250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 4948
- 손실함수
- 가상환경
- 재귀
- 백트래킹
- 기계학습
- 파이싼
- N-Queen
- Mac
- streamlit
- 개발환경
- 경사하강법
- Python
- 9020
- 그리디 알고리즘
- 백준
- BOJ
- n과 m
- pyenv
- 1101
- end to end
- 1002
- 밑바닥부터 시작하는 딥러닝
- 15649
- 신경망 학습
- 실버
- 설정
- 파이썬
Archives
- Today
- Total
파이톨치
[백준] 1263 파이썬 python 본문
728x90
n = int(input())
t = []
for i in range(n):
t.append(tuple(map(int, input().split())))
t.sort(key = lambda x : x[1], reverse=True)
# print(t)
now = t[0][1]
for i in range(n):
if now > t[i][1]:
now = t[i][1]
task = t[i][0]
now = now - task
# print(now, t[i][1])
if now < 0:
print(-1)
else:
print(now)
728x90