Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- codingtest
- cos
- 파이썬
- 알고리즘
- DFS
- 안드로이드스튜디오
- DART
- 코테
- Algorithm
- Python
- 개발
- 분할정복
- Flutter
- django
- issue
- C++
- DFS와BFS
- BAEKJOON
- 백준
- 코딩테스트
- 코드품앗이
- 동적계획법과최단거리역추적
- android
- 동적계획법
- 안드로이드
- AndroidStudio
- cos pro
- vuejs
- cos pro 1급
- Vue
Archives
- Today
- Total
목록cos pro 1급 합이 k배가 되는 수 python (1)
Development Artist
[COS Pro 1급, Python] 2차 4번 : 합이 k 배가 되는 수
문제 유형 코딩 난이도 (주관적인) hard Note 1. Combination(조합). 배열의 원소들 중 3개를 택하여 더하여 K배수가 되는지 확인. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean # 2차 4번 def solution(arr, K): answer = 0 for i in range(len(arr)-2): for j in range(i+1, len(arr)-1): for k in range(j+1, len(arr)): if (arr[i]+arr[j]+arr[k])%K == 0: answer += 1 return answer arr = [1, 2, 3, 4, 5] K = 3 ret = solution(arr, K) print..
Algorithm/COS
2022. 2. 25. 10:12