일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- C언어
- 자바 스프링
- 페이코 추천인
- 페이코 친구코드
- 배열
- php 프로그래밍 입문 연습문제
- Flutter
- php 프로그래밍 입문
- programmers
- php 프로그래밍 입문 솔루션
- 플러터 개발환경 설정
- php 프로그래밍
- php 프로그래밍 입문 문제풀이
- 플러터
- php 프로그래밍 입문 3판
- Java
- SWEA
- 페이코 초대코드
- JAVA SPRING
- 스프링
- 최단 경로
- spring
- C
- 페이코 추천인코드
- php 프로그래밍 입문 예제
- 백준
- 파이썬
- 자바
- 한정 분기
- php
Archives
- Today
- Total
11-07 11:40
ImJay
[파이썬/Python] 백준 8370번 Plane 본문
반응형
[파이썬/Python] 백준 8370번 Plane
문제
Byteland Airlines recently extended their aircraft fleet with a new model of a plane. The new acquisition has n1 rows of seats in the business class and n2 rows in the economic class. In the business class each row contains k1 seats, while each row in the economic class has k2 seats.
Write a program which:
- reads information about available seats in the plane,
- calculates the sum of all seats available in that plane,
- writes the result.
코드
n1, k1, n2, k2 = map(int, input().split())
print(n1*k1 + n2*k2)
풀이
1. n1, k1, n2, k2 값을 입력 받습니다. ( In the first and only line of the standard input there are four integers n1, k1, n2 and k2 )
n1, k1, n2, k2 = map(int, input().split())
2. 모든 좌석의 합을 구합니다. ( calculates the sum of all seats available in that plane )
print(n1*k1 + n2*k2)
느낀 점
지금 수준으로는 코딩 문제인지 토익 문제인지 구분이 안되는데,
나중에 문제 수준이 올라가면 확실히 영어도 걸림돌이 될 것 같다.
영어 공부를 열심히 해야겠다.
반응형
'Solved.ac - Python > Bronze V' 카테고리의 다른 글
[파이썬/Python] 백준 8437번 Julka (0) | 2022.10.11 |
---|---|
[파이썬/Python] 백준 8393번 합 (0) | 2022.10.07 |
[파이썬/Python] 백준 7287번 등록 (0) | 2022.10.04 |
[파이썬/Python] 백준 5597번 과제 안 내신 분..? (0) | 2022.10.04 |
[파이썬/Python] 백준 5522번 카드 게임 (1) | 2022.10.04 |
Comments