일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flask
- 10953
- 백준
- 2750
- codesingal
- 파이썬 포렌식
- adjacentElementsProduct
- Daily Commit
- recursion
- baekjun
- almostIncreasingSequence
- 2015 봄학기 알고리즘
- 피보나치 수
- Numpy
- Sequential Search
- 수 정렬하기
- data_structure
- matrixElementsSum
- All Longest Strings
- markdown
- centuryFromYear
- Python
- C++
- 파이썬머신러닝완벽가이드
- til
- cpp
- collections.deque
- Counting cells in a blob
- shapeArea
- codesignal
- Today
- Total
목록Programming_prob/BaekJoon 30
Introfor
1234567891011121314from math import ceil def solution(): lst = [int(input()) for _ in range(5)] kor_ = ceil(lst[1]/lst[3]) math_ = ceil(lst[2]/lst[4]) if kor_ > math_: return lst[0] - kor_ return lst[0] - math_ res = solution()print(res)Colored by Color Scriptercs
입력 받은 3개의 수를 오름차순 정렬하고 set()을 이용하여 개수를 통해 문제를 풀었다. 저번에 주사위 네개를 풀어서 같은 방식으로 풀었다. 1 2 3 4 5 6 7 8 9 10 11 12 def solution() -> int: dice = sorted(map(int, input().split())) if len(set(dice)) == 1: return 10000 + dice[0] * 1000 if len(set(dice)) == 3: return dice[2] * 100 for i in range(2): if dice[i] == dice[i+1]: return 1000+dice[i]*100 res = solution() print(res) Colored by Color Scripter cs
소수는 약수로 1과 자기 자신만 가지는 수를 의미. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 def solution(): int(input()) nums = list(map(int, input().split())) res = 0 for i in nums: cnt = 0 for j in range(1, i+1): if not i % j: cnt += 1 if cnt == 2: res += 1 return res res = solution() print(res) Colored by Color Scripter cs
손익분기점 : 총 비용과 총 소득이 동등한 지점을 의미 고정비용 : A, 가변비용 : B, 노트북 가격 : C, 노트북 판매 수 k 손익분기점 = (C - B)k - A 손익분기점이 0일 때 A+Bk = Ck로 k = A/(C-B)된다. 문제에서 최초 수익이 발생하는 판매량을 나타내는 것으로 k = A/(C-B)+1이 된다. 12345678910def solution(): A, B, C = map(int, input().split()) if B >= C: return -1 else: return int(A/(C-B)+1) res = solution()print(res)cs
바로 나오는 단어를 통해 정렬한 단어가 입력 받은 단어와 같은지 비교해서 풀었는데.. 찾아보니 이렇게 푼 사람들이 많았다 1 2 3 4 5 6 7 8 9 10 11 def solution(): res_ = 0 for i in range(int(input())): word = input() if list(word) == sorted(word, key=word.find): res_ += 1 return res_ res = solution() print(res) Colored by Color Scripter cs 이 방법 말고 다른 방법을 생각해봐야겠다. 다른 코드 너무 단순하게만 생각했던 것 같다. 누구나 쉽게 단어의 한 알파벳과 그 다음 알파벳을 비교하는 방식으로 생각하기 쉽다. 하지만 이 방식과 다르게 ..
1일 1코딩 12345678910def solution(): croatia_alpha = ['c=', 'c-', 'dz=', 'd-', 'lj', 'nj', 's=', 'z='] string = input() for i in croatia_alpha: string = string.replace(i, '0') return len(string) res = solution()print(res)Colored by Color Scriptercs