Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 데이콘
- github
- 프로그래머스 파이썬
- dacon
- 맥북
- 더현대서울 맛집
- 파이썬
- PYTHON
- 금융문자분석경진대회
- 캐치카페
- Baekjoon
- Docker
- AI 경진대회
- SW Expert Academy
- programmers
- hackerrank
- 프로그래머스
- ubuntu
- 백준
- 우분투
- leetcode
- 자연어처리
- 편스토랑
- ChatGPT
- Git
- 코로나19
- gs25
- 편스토랑 우승상품
- Real or Not? NLP with Disaster Tweets
- Kaggle
Archives
- Today
- Total
목록
반응형
2022/05/10 (1)
반응형
솜씨좋은장씨
[BaekJoon] 8370번 : Plane (Python)
코딩 1일 1문제! 오늘의 문제는 백준의 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 👨🏻💻 코드 ( Solution ) def plane(n1, k1, n2, k2): return (n1 * k1) + (n2 * k2) if __name__ == "__main__": n1, k1, n2, k2 = map(int, input().split()) print(plane(n1, k1, n2, k2)) GitHub - S..
Programming/코딩 1일 1문제
2022. 5. 10. 10:24
반응형