Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CTF
- 정렬
- 써니나타스
- 사칙연산
- 그리디 알고리즘
- HackCTF
- 수학
- wargame
- C
- 문자열
- Digital Forensics
- Incognito
- Network
- php
- Forensics
- 인코그니토
- SuNiNaTas
- cryptography
- writeup
- 구현
- N0Named
- Web
- 백준
- Python
- Text
- xcz.kr
- Web Hacking
- misc
- Database
- MySQL
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 9325번 얼마? 본문
[Baekjoon/Python3] 9325번 얼마?
t = int(input())
for i in range(t):
op_price = 0
price = int(input())
option = int(input())
for j in range(option):
a, b = map(int, input().split())
op_price += a * b
print(price + op_price)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 9366번 삼각형 분류 (0) | 2020.12.05 |
---|---|
(추가예정) [Baekjoon/Python3] 9339번 마라토너 (0) | 2020.12.05 |
[Baekjoon/Python3] 9316번 Hello Judge (0) | 2020.12.05 |
[Baekjoon/Python3] 9296번 Grading Exams (0) | 2020.12.05 |
[Baekjoon/Python3] 9243번 파일 완전 삭제 (0) | 2020.12.05 |
Comments