일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- programmers
- Flutter
- php 프로그래밍 입문 예제
- 최단 경로
- SWEA
- C언어
- php 프로그래밍 입문
- 페이코 추천인코드
- 페이코 초대코드
- 배열
- php 프로그래밍
- Java
- 페이코 친구코드
- 플러터 개발환경 설정
- spring
- 파이썬
- C
- php 프로그래밍 입문 3판
- 자바
- JAVA SPRING
- php 프로그래밍 입문 솔루션
- php
- php 프로그래밍 입문 연습문제
- 페이코 추천인
- 자바 스프링
- 플러터
- 스프링
- 한정 분기
- 백준
- php 프로그래밍 입문 문제풀이
Archives
- Today
- Total
11-07 11:40
ImJay
[파이썬/Python] 백준 24736번 Football Scoring 본문
반응형
[파이썬/Python] 백준 24736번 Football Scoring
https://www.acmicpc.net/problem/24736
문제
There are five ways to score points in american professional football:
- Touchdown - 6 points
- Field Goal - 3 points
- Safety - 2 points
- After touchdown
- 1 point (Field Goal or Safety) - Typically called the “Point after”
- 2 points (touchdown) - Typically called the “Two-point conversion”
(https://operations.nfl.com/the-rules/nfl-video-rulebook/scoring-plays/)
Given the box score values for two competing teams, calculate the point total for each team.
해설
T, F, S, P, C 가 input 으로 주어지면,
T는 6점, F는 3점, S는 2점, P는 1점, C는 2점으로 총점을 계산해서
홈팀과 어웨이팀의 총 점수를 구해주면 된다.
코드
for _ in range(2):
score = 0
T, F, S, P, C = map(int, input().split())
score = T*6 + F*3 + S*2 + P*1 + C*2
print(score, end=" ")
풀이
1. 홈팀과 어웨이팀의 점수를 받아줄 score 를 0으로 초기화한다.
score = 0
2. T, F, S, P, C 를 입력 받는다.
T, F, S, P, C = map(int, input().split())
3. 각 입력 값에 해당하는 점수를 곱하여 총 점수를 계산한다.
score = T*6 + F*3 + S*2 + P*1 + C*2
4. 구해준 점수를 출력한다. 이 때, 같은 줄에 공백으로 구분하여 출력해야 하므로 end=" " 속성을 추가한다.
print(score, end=" ")
5. 1~4 과정을 두번 반복하여 수행한다. (홈팀, 어웨이팀 총 2회)
for _ in range(2):
score = 0
T, F, S, P, C = map(int, input().split())
score = T*6 + F*3 + S*2 + P*1 + C*2
print(score, end=" ")
반응형
'Solved.ac - Python > Bronze V' 카테고리의 다른 글
[파이썬/Python] 백준 25083번 새싹 (0) | 2022.12.04 |
---|---|
[파이썬/Python] 백준 24900번 한별찍기 (0) | 2022.12.03 |
[파이썬/Python] 백준 24568번 Cupcake Party (0) | 2022.12.01 |
[파이썬/Python] 백준 24309번 PABEHCTBO (0) | 2022.12.01 |
[파이썬/Python] 백준 24262번 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2022.11.30 |
Comments