일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- quantification
- multimodal machine learning
- Github
- 코딩테스트
- 백준
- tensorflow
- LeNet-5
- timechat
- q-former
- CNN
- hackerrank
- ma-lmm
- secure-file-priv
- 용어
- sliding video q-former
- memory bank
- long video understanding
- autogluon
- leetcode
- Linux
- Anaconda
- MySQL
- timestamp-aware frame encoder
- Artificial Intelligence
- jmeter
- Kaggle
- Server
- Python
- transference
- error
Archives
- Today
- Total
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- quantification
- multimodal machine learning
- Github
- 코딩테스트
- 백준
- tensorflow
- LeNet-5
- timechat
- q-former
- CNN
- hackerrank
- ma-lmm
- secure-file-priv
- 용어
- sliding video q-former
- memory bank
- long video understanding
- autogluon
- leetcode
- Linux
- Anaconda
- MySQL
- timestamp-aware frame encoder
- Artificial Intelligence
- jmeter
- Kaggle
- Server
- Python
- transference
- error
Archives
- Today
- Total
목록백준2839 (1)
Juni_DEV

https://www.acmicpc.net/problem/2839 2839번: 설탕 배달 상근이는 요즘 설탕공장에서 설탕을 배달하고 있다. 상근이는 지금 사탕가게에 설탕을 정확하게 N킬로그램을 배달해야 한다. 설탕공장에서 만드는 설탕은 봉지에 담겨져 있다. 봉지는 3킬로그 www.acmicpc.net 풀이. n = int(input()) answer = [] count = 0 # 5의 배수인 경우 바로 값을 출력함 if n % 5 == 0 : print(int(n/5)) else : while(n > 0): # 5씩 빼면서 3의 배수가 되는 경우를 answer 배열에 넣음 if n%3 == 0: small = int(n/3) big= count answer.append(small + big) n= n-5..
Coding Interview
2021. 6. 25. 20:41