일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 10926
- Beakjoon
- 백준
- C
- 초보
- 구현
- 꾸준히
- C Programming
- 10807
- C 언어
- implement
- 정리
- c언어
- 친절한 설명
- VS
- 입문
- 알고리즘
- Baekjoon
- 파이썬
- Python
- greedy
- 문자열
- 설명
- Implemention
- 그리디
- 심화1
- 코드엔진
- CSS
- 문제풀이
- HTML
- Today
- Total
목록파이썬(Python)/문제풀이(백준,BaekJoon) (98)
안경잡이 구루루
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/5073 5073번: 삼각형과 세 변 각 입력에 맞는 결과 (Equilateral, Isosceles, Scalene, Invalid) 를 출력하시오. www.acmicpc.net 나: while True: box = list(map(int,input().split(' '))) a,b,c= sorted(box,reverse=True) if a==0 and b==0 and c==0: break elif (a
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..