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 |
Tags
- 그리디 알고리즘
- 수학
- 문자열
- CTF
- Digital Forensics
- xcz.kr
- Web
- Network
- 백준
- 사칙연산
- 정렬
- Text
- MySQL
- N0Named
- 써니나타스
- Web Hacking
- SuNiNaTas
- php
- 인코그니토
- 구현
- wargame
- writeup
- Database
- Forensics
- misc
- C
- cryptography
- HackCTF
- Incognito
- Python
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 8370번 Plane 본문
[Baekjoon/Python3] 8370번 Plane
8370번: Plane
In the first and only line of the standard input there are four integers n1, k1, n2 and k2 (1 ≤ n1, k1, n2, k2 ≤ 1 000), separated by single spaces.
www.acmicpc.net
n1, k1, n2, k2 = map(int, input().split())
print(n1 * k1 + n2 * k2)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 8741번 이진수 합 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 8393번 합 (0) | 2020.12.05 |
[Baekjoon/Python3] 7600번 문자가 몇갤까 (0) | 2020.12.05 |
[Baekjoon/Python3] 7568번 덩치 (0) | 2020.12.05 |
[Baekjoon/Python3] 7567번 그릇 (1) | 2020.12.05 |
Comments