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
- 안드로이드스튜디오
- DART
- django
- 알고리즘
- 코딩테스트
- 개발
- 동적계획법
- DFS
- 코드품앗이
- Vue
- DFS와BFS
- 백준
- BAEKJOON
- Python
- 코테
- 안드로이드
- issue
- vuejs
- Flutter
- 동적계획법과최단거리역추적
- Algorithm
- AndroidStudio
- cos
- codingtest
- android
- C++
- 분할정복
- cos pro 1급
- cos pro
- 파이썬
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 2차 4번 : 합이 k 배가 되는 수 본문
728x90
반응형
문제 유형
코딩
난이도 (주관적인)
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("solution 함수의 반환 값은", ret, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 2차 6번 : 로봇을 움직여주세요 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 2차 5번 : 언제까지 오르막길이야..?! (0) | 2022.02.25 |
[COS Pro 1급, Python] 2차 3번 : 경품 당첨자를 구해주세요 (0) | 2022.02.25 |
[COS Pro 1급, Python] 2차 2번 : 지하철 기다리기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 2차 1번 : 도서 대여점 운영 (0) | 2022.02.25 |
Comments