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
- AI 경진대회
- 파이썬
- 자연어처리
- gs25
- 프로그래머스
- 더현대서울 맛집
- github
- PYTHON
- 데이콘
- programmers
- leetcode
- 우분투
- 프로그래머스 파이썬
- Git
- 코로나19
- 캐치카페
- 백준
- hackerrank
- 맥북
- Kaggle
- Docker
- 편스토랑
- ChatGPT
- SW Expert Academy
- 편스토랑 우승상품
- ubuntu
- dacon
- 금융문자분석경진대회
- Baekjoon
- Real or Not? NLP with Disaster Tweets
Archives
- Today
- Total
목록
반응형
BaekJoon 3733 Shares 파이썬 (1)
반응형
솜씨좋은장씨
[BaekJoon] 3733번 : Shares (Python)
코딩 1일 1문제! 오늘의 문제는 백준의 Shares 입니다. 3733번: Shares A group of N persons and the ACM Chief Judge share equally a number of S shares (not necessary all of them). Let x be the number of shares aquired by each person (x must be an integer). The problem is to compute the maximum value of x. Write a program that www.acmicpc.net 👨🏻💻 코드 ( Solution ) def shares(N, S): return S // (N + 1) if __name__ == "_..
Programming/코딩 1일 1문제
2022. 9. 2. 22:47
반응형