일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- regression
- 이중우선순위큐
- Crank-Nicolson
- Navier-Stokes
- Turbulent
- programmers
- 우선순위큐
- Statistics
- 회귀
- projecteuler
- Python
- 파이썬
- Laminar
- 통계학
- 예제
- Fluid Dynamics
- Compressible Flow
- 프로젝트오일러
- 디스크 컨트롤러
- Boundary Layers
- python3
- Fluids
- 프로그래머스
- Finite Difference Method
- FTCS
- heap
- Blasius
- 힙
- Heat Equation
- 유체역학
- Today
- Total
목록projecteuler (26)
Sudal's Garage
Question: Triangle, pentagonal, and hexagonal numbers are generated by the following formulae: Triangle Tn=n(n+1)/2 1, 3, 6, 10, 15, ...Pentagonal Pn=n(3n−1)/2 1, 5, 12, 22, 35, ...Hexagonal Hn=n(2n−1) 1, 6, 15, 28, 45, ... It can be verified that T285 = P165 = H143 = 40755.Find the next triangle number that is also pentagonal and hexagonal. 문제: 삼각수, 오각수, 육각수는 다음과 같은 공식들로 만들어진다. Triangle Tn=n(n+..
Question: Pentagonal numbers are generated by the formula, Pn=n(3n−1)/2. The first ten pentagonal numbers are:1, 5, 12, 22, 35, 51, 70, 92, 117, 145, ...It can be seen that P4 + P7 = 22 + 70 = 92 = P8. However, their difference, 70 − 22 = 48, is not pentagonal.Find the pair of pentagonal numbers, Pj and Pk, for which their sum and difference are pentagonal and D = |Pk − Pj| is minimised; what is..
Question: The number, 1406357289, is a 0 to 9 pandigital number because it is made up of each of the digits 0 to 9 in some order, but it also has a rather interesting sub-string divisibility property.Let d1 be the 1st digit, d2 be the 2nd digit, and so on. In this way, we note the following:d2d3d4=406 is divisible by 2d3d4d5=063 is divisible by 3d4d5d6=635 is divisible by 5d5d6d7=357 is divisibl..
Question: The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangle numbers are:1, 3, 6, 10, 15, 21, 28, 36, 45, 55, ...By converting each letter in a word to a number corresponding to its alphabetical position and adding these values we form a word value. For example, the word value for SKY is 19 + 11 + 25 = 55 = t10. If the word value is a triangle n..
Question: We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once. For example, 2143 is a 4-digit pandigital and is also prime.What is the largest n-digit pandigital prime that exists?문제: n 자리 팬디지털 수는 1부터 n까지 정확히 한 번씩만 써서 만든 수를 말한다. 예를 들어 2143은 4자리 팬디지털 수이면서 소수인 숫자이다.가장 큰 n 자리 팬디지털 소수를 구하여라. Solution: from itertools import permutations from sympy i..