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 |
Tags
- 데이콘
- Real or Not? NLP with Disaster Tweets
- programmers
- 프로그래머스 파이썬
- dacon
- ChatGPT
- 코로나19
- ubuntu
- 자연어처리
- 금융문자분석경진대회
- 파이썬
- 우분투
- hackerrank
- Baekjoon
- 편스토랑
- Kaggle
- AI 경진대회
- Docker
- 백준
- 캐치카페
- gs25
- leetcode
- github
- Git
- PYTHON
- 맥북
- SW Expert Academy
- 더현대서울 맛집
- 편스토랑 우승상품
- 프로그래머스
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
반응형