일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 실습
- 그리디알고리즘
- 함밥
- 모각코
- BFS
- 최소스패닝트리
- 파이썬
- 소프트웨어공학
- SQL
- 백준
- Bellman-Ford
- Kruskal
- 데이터베이스
- B대면노래방
- 장고
- Planned
- django
- 프로그래머스
- 종합설계
- 코드트리
- DP
- DFS
- 동적계획법
- programmers
- 마라마라빔
- MyPlaylist
- minimum spanning tree
- 백트래킹
- 알고리즘
- codetree
Archives
- Today
- Total
Leta Learns
[Python] 백준 1026번 - 보물 본문
문제 https://www.acmicpc.net/problem/1026
기초부터 다지는 알고리즘 스터디라지만,, 지금 실력에 비해 너무 쉬운 문제를 푼 건 아닌지..
ㅋㅋㅋ하지만 오늘치 금방 끝내서 너무 좋다..
import sys
input = sys.stdin.readline
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort()
s = 0
for i in range(n):
mx = max(b)
s += a[i]*mx
b.remove(mx)
print(s)
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1449번 - 수리공 항승 (0) | 2022.02.25 |
---|---|
[Python] 백준 15649번 - N과 M (1) (0) | 2022.02.24 |
[Python] 백준 11399번 - ATM (0) | 2022.02.23 |
[Python] 백준 1931번 - 회의실 배정 (0) | 2022.02.22 |
[Python] 백준 1764번 - 듣보잡 (0) | 2022.02.21 |
Comments