일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- nico
- 単語
- 자바
- 日本語
- 비즈니스일본어
- 건담베이스
- DART
- 디지몬
- java
- CSS
- springboot
- Web
- 一日一つメソッド
- Python
- html
- 건담
- vscode
- メソッド
- C로 시작하는 컴퓨터 프로그래밍4판
- jsp
- 연습문제
- ruby
- 일본어
- Spring
- 반다이몰
- Flutter
- javascript
- rails7
- rails
- 인프런
Archives
- Today
- Total
목록프로그래밍 (1)
AR삽질러
C075:ポイント払い
使用言語 : Python 사용언어 : Python budget, rides = input().split(' ') budget = int(budget) rides = int(rides) price_list = list() for i in range(rides): price = int(input()) price_list.append(price) point = 0 for price in price_list: if point >= price: point -= price else: budget -= price point += price * 0.1 print(budget, int(point)) 설명 : 사용자로부터 예산과 탑승횟수를 입력받아 각 탑승 횟수에 대한 예산과 포인트를 계산하는 문제 説明:ユーザーから予算と..
日本語/paiza
2023. 7. 15. 18:37