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