일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- programmers
- 스프링
- php 프로그래밍 입문 3판
- spring
- JAVA SPRING
- 페이코 추천인코드
- 페이코 초대코드
- php 프로그래밍 입문 예제
- 자바 스프링
- php 프로그래밍 입문 문제풀이
- C언어
- 플러터 개발환경 설정
- Java
- 백준
- php 프로그래밍 입문 솔루션
- php 프로그래밍 입문
- Flutter
- SWEA
- php
- 페이코 친구코드
- php 프로그래밍
- 플러터
- php 프로그래밍 입문 연습문제
- 페이코 추천인
- 최단 경로
- 자바
- 한정 분기
- 배열
- 파이썬
- C
- Today
- Total
ImJay
[파이썬/Python] 백준 20254번 Site Score 본문
[파이썬/Python] 백준 20254번 Site Score
문제
Teams from variaous universities compete in ICPC regional contests for tickets to the ICPC World Finals. The number of tickets allocated to every regional contest may be different. The allocation method in our super region, Asia Pacific, is based on a parameter called site score.
Site scores will only count teams and universities solving at least one problem, in the regional contest or its preliminary contest TOPC. In 2020, the formula for calculating the site score of the Taipei-Hsinchu regional contest is much simpler than past years. Let
- UR be the number of universities solving at least one problem in the regional contest.
- TR be the number of teams solving at least one problem in the regional contest.
- UO be the number of universities solving at least one problem in TOPC.
- TO be the number of teams solving at least one problem in TOPC.
The site score of 2020 Taipei-Hsinchu regional contest will be 56UR + 24TR + 14UO + 6TO. Please write a program to compute the site score of the 2020 Taipei-Hsinchu regional contest.
해석
The site score of 2020 Taipei-Hsinchu regional contest will be 56UR + 24TR + 14UO + 6TO.
점수는 56UR + 24TR + 14UO + 6TO 이다.코드
UR, TR, UO, TO = map(int, input().split())
print(56*UR + 24*TR + 14*UO + 6*TO)
풀이
1. UR, TR, UO, TO 를 입력 받는다.
UR, TR, UO, TO = map(int, input().split())
2. 점수 (56UR + 24TR + 14UO + 6TO) 를 출력한다.
print(56*UR + 24*TR + 14*UO + 6*TO)
'Solved.ac - Python > Bronze V' 카테고리의 다른 글
[파이썬/Python] 백준 21300번 Bottle Return (0) | 2022.11.28 |
---|---|
[파이썬/Python] 백준 20492번 세금 (0) | 2022.11.28 |
[파이썬/Python] 백준 18096번 Арифметическая магия (0) | 2022.11.25 |
[파이썬/Python] 백준 18301번 Rats (0) | 2022.11.22 |
[파이썬/Python] 백준 18108번 1998년생인 내가 태국에서는 2541년생?! (0) | 2022.11.22 |