일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- markdown
- data_structure
- 피보나치 수
- All Longest Strings
- 2750
- centuryFromYear
- 백준
- Python
- collections.deque
- Daily Commit
- cpp
- 파이썬머신러닝완벽가이드
- adjacentElementsProduct
- recursion
- Counting cells in a blob
- codesignal
- 수 정렬하기
- matrixElementsSum
- Numpy
- 파이썬 포렌식
- til
- codesingal
- 2015 봄학기 알고리즘
- C++
- Sequential Search
- 10953
- flask
- almostIncreasingSequence
- baekjun
- shapeArea
Archives
- Today
- Total
Introfor
[백준] 5596번 시험 점수 본문
1 2 3 4 5 6 7 8 9 10 | def solution(): min = sum(list(map(int, input().split()))) man = sum(list(map(int, input().split()))) if min > man: return min elif min < man: return man return man res = solution() print(res) | cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 5532번 방학 숙제 (0) | 2020.10.19 |
---|---|
[백준] 3004번 체스판 조각 (0) | 2020.10.19 |
[백준] 2525번 오븐 시계 (0) | 2020.10.19 |
[백준] 2480번 주사위 세개 (0) | 2020.10.18 |
[백준] 1978번 소수 찾기 (0) | 2020.10.10 |
Comments