일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- python3
- Python
- 회귀
- Compressible Flow
- Heat Equation
- programmers
- Finite Difference Method
- 이중우선순위큐
- 유체역학
- 예제
- 우선순위큐
- Crank-Nicolson
- 힙
- 파이썬
- Statistics
- regression
- Blasius
- Turbulent
- projecteuler
- Boundary Layers
- Fluids
- 프로젝트오일러
- Navier-Stokes
- heap
- Fluid Dynamics
- Laminar
- 통계학
- FTCS
- 프로그래머스
- 디스크 컨트롤러
- Today
- Total
목록Programming (59)
Sudal's Garage
Question: Surprisingly there are only three numbers that can be written as the sum of fourth powers of their digits:1634 = 14 + 64 + 34 + 44 8208 = 84 + 24 + 04 + 84 9474 = 94 + 44 + 74 + 44As 1 = 14 is not a sum it is not included.The sum of these numbers is 1634 + 8208 + 9474 = 19316.Find the sum of all the numbers that can be written as the sum of fifth powers of their digits. 문제:놀랍게도 각 자릿수의 ..
Question: Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5: 22=4, 23=8, 24=16, 25=32 32=9, 33=27, 34=81, 35=243 42=16, 43=64, 44=256, 45=1024 52=25, 53=125, 54=625, 55=3125 If they are then placed in numerical order, with any repeats removed, we get the following sequence of 15 distinct terms:4, 8, 9, 16, 25, 27, 32, 64, 81, 125, 243, 256, 625, 1024, 3125How many distinct term..
앞서 다뤘던 conditionally stable 한 FTCS Method 와는 다르게,2019/02/26 - [Programming/MATLAB] - Finite Difference Method for the Heat Equation, FTCS Method CN Method, Crank - Nicolson Method 는 Heat Equation을 위한 Finite Differential Method 이면서 stable 하다. CN Method 는,j 와 j+1 의 시간변화와, 공간에서 중앙의 2차 미분값 차이의 평균을 계산한다. 식으로 표현하자면, 가 된다. , 로 치환을 하고 다시 정리를 해보자. 왼쪽은 시간이 j+1 일 때, 오른쪽은 시간이 j 일 때로 보기좋게 나누어 졌다. 이제, 라 하고, C..
Question: Starting with the number 1 and moving to the right in a clockwise direction a 5 by 5 spiral is formed as follows:21 22 23 24 25 20 7 8 9 10 19 6 1 2 11 18 5 4 3 12 17 16 15 14 13It can be verified that the sum of the numbers on the diagonals is 101.What is the sum of the numbers on the diagonals in a 1001 by 1001 spiral formed in the same way? 문제:1부터 시작해서 오른쪽으로 움직인 뒤 시계방향으로 숫자를 적어나가는 방..
Question: A unit fraction contains 1 in the numerator. The decimal representation of the unit fractions with denominators 2 to 10 are given:1/2= 0.51/3= 0.(3)1/4= 0.251/5= 0.21/6= 0.1(6)1/7= 0.(142857)1/8= 0.1251/9= 0.(1)1/10= 0.1Where 0.1(6) means 0.166666..., and has a 1-digit recurring cycle. It can be seen that 1/7 has a 6-digit recurring cycle.Find the value of d < 1000 for which 1/d contai..