일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 시뮬레이션
- 프랙탈
- project euler
- 재귀함수
- counting sunday
- 프로젝트 오일러
- 수학탐구
- 피타고라스 정리
- 작도
- Geogebra
- 구분구적법
- 오일러
- 제곱근의뜻
- python
- 상합
- 이항분포
- 확률실험
- java
- 블록코딩
- 파이썬
- 몬테카를로
- 리만합
- 하합
- 삼각함수의그래프
- 큰수의법칙
- 지오지브라
- 정오각형
- algeomath
- 알지오매스
- 큰 수의 법칙
Archives
- Today
- Total
목록projecteuler (1)
이경수 선생님의 수학실험실
Problem 1(Multiples of 3 and 5) If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. In Python: sum=0 for i in range(1,1000): if i%3==0 or i%5==0: sum+=i print(sum) Run time: 0.00024700164794921875 seconds In Python:print(sum([i for i in range(1, 1000) if i % 3 == ..
Project Euler
2019. 2. 6. 14:05