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
- 백트래킹
- 백준
- BOJ
- 그리디 알고리즘
- 기계학습
- 1002
- 파이싼
- end to end
- 밑바닥부터 시작하는 딥러닝
- 설정
- 4948
- 신경망 학습
- Mac
- N-Queen
- pyenv
- 경사하강법
- 재귀
- n과 m
- 1101
- 15649
- 손실함수
- 9020
- 개발환경
- 가상환경
- 파이썬
- 실버
- streamlit
- Python
Archives
- Today
- Total
파이톨치
백준 [1025] 본문
728x90
n, score, p = map(int, input().split())
if n == 0:
print(1)
else:
scores = list(map(int, input().split()))
scores.append(score)
scores.sort(reverse=True)
idx = scores.index(score)
# print(scores)
if n==p and scores[-1] >= score:
print(-1)
else:
print(idx+1)
728x90