일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 회귀
- Turbulent
- Heat Equation
- regression
- Statistics
- projecteuler
- programmers
- 우선순위큐
- 프로젝트오일러
- 힙
- Fluid Dynamics
- python3
- Crank-Nicolson
- Finite Difference Method
- Laminar
- heap
- Navier-Stokes
- 예제
- 유체역학
- 이중우선순위큐
- Blasius
- FTCS
- 디스크 컨트롤러
- 파이썬
- Python
- 통계학
- 프로그래머스
- Compressible Flow
- Fluids
- Boundary Layers
- Today
- Total
목록Programming (59)
Sudal's Garage
Question: If p is the perimeter of a right angle triangle with integral length sides, {a,b,c}, there are exactly three solutions for p = 120.{20,48,52}, {24,45,51}, {30,40,50}For which value of p ≤ 1000, is the number of solutions maximised? 문제: 세 변의 길이가 모두 양의 정수인 직각삼각형의 둘레가 p일 때, p = 120인 가능한 세 변 {a,b,c}의 솔루션은 세 가지가 있다.{20,48,52}, {24,45,51}, {30,40,50}p ≤ 1000인 p 중에서, 가장 가능한 솔루션 개수가 많은 p는 무엇일까..
Question: Take the number 192 and multiply it by each of 1, 2, and 3:192 × 1 = 192 192 × 2 = 384 192 × 3 = 576By concatenating each product we get the 1 to 9 pandigital, 192384576. We will call 192384576 the concatenated product of 192 and (1,2,3)The same can be achieved by starting with 9 and multiplying by 1, 2, 3, 4, and 5, giving the pandigital, 918273645, which is the concatenated product o..
Question: The number 3797 has an interesting property. Being prime itself, it is possible to continuously remove digits from left to right, and remain prime at each stage: 3797, 797, 97, and 7. Similarly we can work from right to left: 3797, 379, 37, and 3.Find the sum of the only eleven primes that are both truncatable from left to right and right to left.NOTE: 2, 3, 5, and 7 are not considered..
Question: The decimal number, 585 = 10010010012 (binary), is palindromic in both bases.Find the sum of all numbers, less than one million, which are palindromic in base 10 and base 2.(Please note that the palindromic number, in either base, may not include leading zeros.) 문제: 십진수 585를 이진수로 표현하면 다음과 같다. 585 = 10010010012 그리고 이 수는 십진법으로도 이진법으로도 회문이다.(거꾸로 읽어도 같은 수, palindrome)백만보다 작은 십진법으로도 이진법으로도 ..
Question: The number, 197, is called a circular prime because all rotations of the digits: 197, 971, and 719, are themselves prime.There are thirteen such primes below 100: 2, 3, 5, 7, 11, 13, 17, 31, 37, 71, 73, 79, and 97.How many circular primes are there below one million? 문제: 소수 중 각 자릿수를 순환시켜도 모두 소수인 수를 써큘러 소수라 한다.(circular prime) 197은 소수이면서 각 자릿수를 순환시킨 971, 719도 소수이므로 써큘러 소수에 해당한다.100보다 작은..