일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- VS
- 설명
- Implemention
- greedy
- 친절한 설명
- 심화1
- 코드엔진
- CSS
- 파이썬
- C
- 백준
- implement
- C Programming
- 문제풀이
- 그리디
- 구현
- 입문
- 꾸준히
- 10926
- 정리
- 문자열
- 알고리즘
- 10807
- Baekjoon
- C 언어
- Python
- c언어
- HTML
- Beakjoon
- 초보
- Today
- Total
목록문제풀이 (55)
안경잡이 구루루
https://www.acmicpc.net/problem/2864 2864번: 5와 6의 차이 첫째 줄에 두 정수 A와 B가 주어진다. (1 >> table = str.maketrans('aeiou', '12345') >>> 'apple'.translate(table) '1ppl2' table = str.maketrans('5','6') a= a.translate(table) b= b.translate(table) print(int(a)+int(b)) 다음으로 최댓값을 출력하는 경우를 구현하기 위해 위의 경우와 반대로 바꿀문자에 5, 새문자에 6을 넣어 테이블을 만듦. 이후 각 입력값 a,b 에 이를 적용시켰고 위와 똑같이 input() 은 문자열로 받기 때문에 합을 구할때 int 정수형으로 바꿔서 계산..
https://www.acmicpc.net/problem/10162 10162번: 전자레인지 3개의 시간조절용 버튼 A B C가 달린 전자레인지가 있다. 각 버튼마다 일정한 시간이 지정되어 있어 해당 버튼을 한번 누를 때마다 그 시간이 동작시간에 더해진다. 버튼 A, B, C에 지정된 시간은 www.acmicpc.net 나: T = int(input()) buttons = [300,60,10] result = [] count = 0 for button in buttons: count = T//button result.append(count) T = T%button if T == 0: print(*result) else: print(-1) 완성된 코드는 위와 같다. (1) T = int(input()) b..
https://www.acmicpc.net/problem/5585 5585번: 거스름돈 타로는 자주 JOI잡화점에서 물건을 산다. JOI잡화점에는 잔돈으로 500엔, 100엔, 50엔, 10엔, 5엔, 1엔이 충분히 있고, 언제나 거스름돈 개수가 가장 적게 잔돈을 준다. 타로가 JOI잡화점에서 물건을 사 www.acmicpc.net 나: changes = [500,100,50,10,5,1] count =0 money = 1000 - int(input()) for change in changes: count += money//change money = money%change print(count) 완성된 코드는 위와같다. (1) changes = [500,100,50,10,5,1] count =0 잔돈의 ..
https://www.acmicpc.net/problem/10101 10101번: 삼각형 외우기문제의 설명에 따라 Equilateral, Isosceles, Scalene, Error 중 하나를 출력한다.www.acmicpc.net 나:angles=[] totall =0 for i in range(3): angle = int(input()) totall +=angle angles.append(angle) no_dup = set(angles) if totall != 180: print('Error') else: if len(no_dup) ==3: print('Scalene') if len(no_dup) ==2: print('Isosceles') if len(no_dup) ==1: print('Equilat..