일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 수 정렬하기
- cpp
- codesingal
- centuryFromYear
- matrixElementsSum
- Counting cells in a blob
- til
- Numpy
- Daily Commit
- collections.deque
- All Longest Strings
- 파이썬 포렌식
- 피보나치 수
- recursion
- 파이썬머신러닝완벽가이드
- almostIncreasingSequence
- adjacentElementsProduct
- 2015 봄학기 알고리즘
- data_structure
- codesignal
- Sequential Search
- baekjun
- Python
- shapeArea
- 10953
- flask
- 2750
- markdown
- 백준
- C++
Archives
- Today
- Total
Introfor
[백준] 2839번 설탕 배달 본문
3이 최소 값을 가질 때 5가 가질 수 있는 값을 계산
1 2 3 4 5 6 7 8 9 10 11 | def solution(): n = int(input()) for y in range((n//3) + 1): for x in range((n//5) + 1): if 5*x + 3*y == n: return x+y return -1 res = solution() print(res) | cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 2480번 주사위 세개 (0) | 2020.10.18 |
---|---|
[백준] 1978번 소수 찾기 (0) | 2020.10.10 |
[백준] 1712번 손익분기점 (0) | 2020.10.08 |
[백준] 1316번 그룹 단어 체커 (0) | 2020.10.07 |
[백준] 2941번 크로아티아 알파벳 (0) | 2020.10.07 |
Comments