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