반응형
Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준 회전초밥
- gensim size
- GET REQUESTS
- cs50
- Sequenial
- 첫서버
- 백준 2470
- 플로이드워셜
- express
- neo4j 인덱스 사용
- nodemon babel
- 그랜빌의 법칙
- pandas-profiling
- 파이썬
- 투포인터
- 백준 7795
- spring-boot2
- gensim
- UnsatisfiedDependencyException
- 백준
- 텍스트전처리
- gensim_models
- neo4j 스키마 정의
- 알고리즘
- 워드 임베딩
- neo4j
- PREFECT
- neo4j 제약조건
- BFS
- spring-boot3
Archives
- Today
- Total
목록백준 2470 (1)
정리정돈
[백준 2470] 두 용액 (Python)
https://www.acmicpc.net/problem/2470 2470번: 두 용액 첫째 줄에는 전체 용액의 수 N이 입력된다. N은 2 이상 100,000 이하이다. 둘째 줄에는 용액의 특성값을 나타내는 N개의 정수가 빈칸을 사이에 두고 주어진다. 이 수들은 모두 -1,000,000,000 이상 1,000,00 www.acmicpc.net 나의 풀이(실패) n = int(input()) INF = int(1e9) li = list(map(int,input().split())) li = sorted(li) min_sum = INF for i in li: temp = li.copy() temp.remove(i) start = 0 end = len(temp) while start < end: mid = ..
알고리즘/백준
2022. 3. 24. 16:45