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
- programmers
- 힙
- Heat Equation
- Statistics
- Python
- Compressible Flow
- Blasius
- 이중우선순위큐
- Fluid Dynamics
- Boundary Layers
- 회귀
- 프로젝트오일러
- FTCS
- regression
- Finite Difference Method
- 파이썬
- python3
- Turbulent
- 우선순위큐
- 디스크 컨트롤러
- 예제
- Navier-Stokes
- 통계학
- heap
- Crank-Nicolson
- projecteuler
- Fluids
- 유체역학
- 프로그래머스
- Laminar
Archives
- Today
- Total
Sudal's Garage
Project Euler 1
Question: 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.문제:0보다 작은 자연수 중에서 3 또는 5의 배수는 3, 5, 6, 9 이고, 이것을 모두 더하면 23입니다.1000보다 작은 자연수 중에서 3 또는 5의 배수를 모두 더하면 얼마일까요? Solution: 1234567a = set() for i in range(1000): if i % 3 == 0 or i % 5 == 0: a.add(i) print(sum(a..
Programming/Project Euler - python
2019. 1. 30. 07:54