일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 최단 경로
- Java
- php 프로그래밍 입문
- php
- php 프로그래밍
- C
- php 프로그래밍 입문 예제
- 페이코 추천인
- 플러터 개발환경 설정
- SWEA
- php 프로그래밍 입문 연습문제
- 파이썬
- spring
- 자바 스프링
- C언어
- 한정 분기
- 페이코 친구코드
- 배열
- 자바
- 페이코 초대코드
- php 프로그래밍 입문 솔루션
- 플러터
- 스프링
- 백준
- php 프로그래밍 입문 3판
- 페이코 추천인코드
- programmers
- Flutter
- JAVA SPRING
- php 프로그래밍 입문 문제풀이
- Today
- Total
ImJay
[파이썬/Python] 백준 21300번 Bottle Return 본문
[파이썬/Python] 백준 21300번 Bottle Return
문제
In the United States, beverage container deposit laws, or so-called bottle bills, are designed to reduce litter and reclaim bottles, cans and other containers for recycling. Ten states currently have some sort of deposit-refund systems in place for different types of beverage containers. These deposit amounts vary from 2¢ to 15¢ per container, depending on the type and volume of the container. For example, Oregon charges a (refundable) deposit of 2¢ per refillable container, and 10¢ for all others (with exceptions).
For this problem you will calculate the amount a customer will get refunded for a given collection of empty containers in the state of New York. New York’s rules are very simple: there is a 5¢ deposit for containers of any size less than one gallon containing beer, malt, wine products, carbonated soft drinks, seltzer and water (that does not contain sugar).
해설
beverage container deposit laws ... rules are very simple: there is a 5¢ deposit for containers.
음료 용기 예치금 법이 존재하는데, 규칙은 어떤 용기든 5센트를 받는다.
코드
bottle = map(int, input().split())
print(sum(bottle)*5)
풀이
1. Input consists of a single line containing 6 space separated integer values representing the number of empty containers of beer, malt, wine products, carbonated soft drinks, seltzer and water.
6 종류의 음료 용기를 리스트 bottle로 입력 받는다.
bottle = map(int, input().split())
2. The output consists of a single line that contains a single integer representing the total refund the customer should get in cents.
지불 금액을 출력한다.
지불 금액 = 모든 용기의 합 * 5센트
print(sum(bottle)*5)
'Solved.ac - Python > Bronze V' 카테고리의 다른 글
[파이썬/Python] 백준 22193번 Multiply (0) | 2022.11.29 |
---|---|
[파이썬/Python] 백준 21598번 SciComLove (0) | 2022.11.29 |
[파이썬/Python] 백준 20492번 세금 (0) | 2022.11.28 |
[파이썬/Python] 백준 20254번 Site Score (0) | 2022.11.28 |
[파이썬/Python] 백준 18096번 Арифметическая магия (0) | 2022.11.25 |