«factorial» 태그된 질문

계승의 계산 또는 기타 사용 관련

30
수학은 사실입니다. 프로그래밍이 아닙니다
수학에서 느낌표는 !종종 계승을 의미 하며 인수 뒤에옵니다. 느낌표를 프로그래밍 할 때 !종종 부정을 의미 하며 인수 앞에옵니다. 이 과제에서는 이러한 작업을 0과 1에만 적용합니다. Factorial 0! = 1 1! = 1 Negation !0 = 1 !1 = 0 제로 이상의 문자열을 가지고 !'의 다음의, 0또는 10 개 이상의 뒤에, …

30
계승을 찾아라!
음수가 아닌 정수 의 계승 을 찾는 가장 짧은 프로그램이나 함수를 만듭니다 . 계승 !은 다음과 같이 정의됩니다. 아니 ! : = { 1n ⋅ ( n − 1 ) !n=0n > 0n!:={1n=0n⋅(n−1)!n>0n!:=\begin{cases}1 & n=0\\n\cdot(n-1)!&n>0\end{cases} 일반 영어에서 0의 계승은 1이고 n의 계승입니다. 여기서 n이 0보다 크면 n은 1보다 작은 계승의 …

30
더 작은 "H"에서 "H"만들기
도전 integer가 주어지면 size다음을 수행 하는 함수 또는 프로그램을 작성하십시오 . 경우 size1과 동일 출력 H H HHH H H 경우 size1 출력보다 더 큰 X X XXX X X X프로그램 / 기능의 출력은 어디에 있습니까?size - 1 (원하는 경우 0답변에 지정 하는 한 기본 사례가에 해당 할 수 있습니다. …
73 code-golf  ascii-art  fractal  code-golf  code-golf  string  code-golf  string  matrix  code-golf  graph-theory  maze  binary-matrix  code-golf  kolmogorov-complexity  random  code-challenge  metagolf  test-battery  brain-flak  text-processing  code-golf  matrix  code-golf  number-theory  primes  code-golf  string  matrix  code-golf  binary  bitwise  code-golf  number  factorial  floating-point  code-golf  number  sequence  code-golf  sequence  cops-and-robbers  code-golf  sequence  cops-and-robbers  code-golf  string  code-golf  math  decision-problem  number-theory  integer  code-golf  number  decision-problem  functional-programming  code-golf  array-manipulation  matrix  code-golf  string  classification  string  code-challenge  binary  compression  decode  code-golf  string  string  code-challenge  balanced-string  encode  code-golf  number-theory  integer  base-conversion  code-golf  math  number-theory  geometry  abstract-algebra  code-golf  array-manipulation  sorting  optimization  code-golf  math  geometry  image-processing  generation  code-golf  string  cops-and-robbers  repeated-transformation  grammars  cops-and-robbers  repeated-transformation  grammars  code-challenge  restricted-source  tips  source-layout  javascript  code-challenge  kolmogorov-complexity  restricted-source  code-golf  combinatorics  counting  math  fastest-code  linear-algebra  code-golf  math  permutations  matrix  linear-algebra  code-golf  string  decision-problem  restricted-source  code-golf  number  array-manipulation  subsequence  code-golf  number  array-manipulation  matrix  code-golf  brainfuck  code-golf  color  code-golf  quine  source-layout  code-golf  subsequence  code-golf  string  ascii-art  code-golf  string  ascii-art  alphabet  code-golf  decision-problem  interpreter  hexagonal-grid  halting-problem  code-golf  string  polynomials  calculus  code-golf  math  decision-problem  matrix  complex-numbers  code-golf  random  code-golf  number  arithmetic 

29
유사 요인
수학 문제 나 수수께끼에 때때로 나타나는 호기심 많은 숫자가 있습니다. 의사 팩토리얼 (N)은 숫자 1 내지 N의 최소 (즉, 가장 낮은) 공통 배수이며; 다시 말해, 그것은 1에서 N까지의 모든 숫자를 인자로 갖는 가장 낮은 숫자입니다. 예를 들어 pseudofactorial (7) = 3 * 4 * 5 * 7은 7과 같습니다! 단, …

30
계승이 끝나면 0
n!10 진수 의 끝에서 0의 숫자를 찾는 프로그램 또는 함수를 작성하십시오 . 여기서 n입력 숫자는 원하는 형식입니다. n양의 정수인 것으로 가정 할 수 있으며 이는 n!또한 정수이기도합니다. 의 소수점 다음에 0이 없습니다 n!. 또한 프로그래밍 언어가 n및 의 값을 처리 할 수 ​​있다고 가정 할 수 있습니다 n!. 테스트 사례 …

30
반복했다! 계승!
계승 찾기 와 혼동하지 마십시오 ! 소개 정수의 계승을 n계산할 수있다 아니 ! = N × ( N - 1 ) × ( N - 2 ) × ( . . . ) × 2 × 1n!=n×(n−1)×(n−2)×(...)×2×1n!=n\times(n-1)\times(n-2)\times(...)\times2\times1 이것은 비교적 쉽고 새롭지 않습니다. 그러나 계승가 확장 될 수 이중 계승 ,되도록 …

24
계승과 끝없는 사이클!
아시다시피, 양의 정수의 계승은와 n같거나 작은 모든 양의 정수의 곱입니다 n. 예를 들면 : 6! = 6*5*4*3*2*1 = 720 0! = 1 우리는 이제 다음과 같이 관련이없는 이름으로 특별한 연산을 정의 할 것이다 sumFac: 양의 정수 감안할 때 n, sumFac(n)숫자의 계승의 합이다. 예를 들면 : sumFac(132) = 1! + 3! …

21
N에 대한 참고 사항!
JE Maxfield는 정리에 따라 입증되었습니다 ( DOI : 10.2307 / 2688966 참조 ). 경우 갖는 정수 긍정적 인 숫자는 양의 정수가 존재 등이 제 자릿수정수 구성합니다 .에이AA엠mm엔NN엠mm엔!N!N!에이AA 도전 당신의 도전은 에 해당하는 찾습니다 .⩾ 1A⩾1A \geqslant 1엔⩾ 1N⩾1N \geqslant 1 세부 엔!N!N!계승엔! = 1 ⋅ 2 ⋅ 3 ⋅ …

30
ASCII 삼각형
당신의 임무는 ASCII 삼각형을 인쇄하는 프로그램이나 함수를 작성하는 것입니다. 그들은 다음과 같이 보입니다 : |\ | \ | \ ---- 프로그램은 n제약 조건 이있는 단일 숫자 입력을 0 <= n <= 1000받습니다. 위 삼각형의 값은 n=3입니다. ASCII 삼각형에는 n백 슬래시 ( \) 및 세로 막대 ( |), n+1선 및 대시 …
30 code-golf  ascii-art  code-golf  rubiks-cube  code-golf  path-finding  maze  regular-expression  code-golf  math  rational-numbers  code-golf  kolmogorov-complexity  graphical-output  code-golf  tips  code-golf  string  permutations  code-golf  sorting  base-conversion  binary  code-golf  tips  basic  code-golf  number  number-theory  fibonacci  code-golf  date  code-golf  restricted-source  quine  file-system  code-golf  code-golf  math  code-golf  ascii-art  code-golf  math  primes  code-golf  code-golf  math  matrix  code-golf  string  math  logic  factorial  code-golf  palindrome  code-golf  quine  stateful  code-golf  interactive  code-golf  board-game  code-golf  math  arithmetic  code-golf  string  code-golf  math  matrix  code-golf  math  abstract-algebra  polynomials  code-golf  date  code-golf  string  array-manipulation  sorting  code-golf  game  code-golf  string  code-golf  ascii-art  decision-problem  code-golf  number  sequence  code-golf  code-golf  code-golf  sequence  fibonacci  code-golf  math  geometry  random  code-golf  code-golf  math  decision-problem  fractal  rational-numbers  code-golf  number  number-theory  code-golf  combinatorics  permutations  card-games  code-golf  math  sequence  array-manipulation  fibonacci  code-golf  sequence  decision-problem  graph-theory  code-golf  ascii-art  parsing  lisp  code-golf  string  math  natural-language  logic  code-golf  math  logic  code-golf  string  alphabet  code-golf  string  code-golf  string 

9
계승의 역수를 계산
1보다 큰 실수를 입력으로 사용하고 양의 역 인수를 출력하는 가장 짧은 코드를 작성하십시오. 즉, "이 숫자와 어떤 계승이 같은가?"라는 질문에 대답합니다. 여기에 설명 된대로 감마 함수를 사용하여 계승 정의를 실수로 확장합니다 . 예를 들면 다음과 같습니다. input=6 output=3 input=10 output=3.390077654 때문에 3! = 6와3.390077654! = 10 규칙 내장 계승 함수 …

30
큰 숫자 : 초 인수
이 질문은 재 작업되었습니다. 다시 읽으십시오. 초 인성 초 인수는 다음 함수를 사용하여 생성 할 수있는 일련의 숫자입니다. a(n) = n! ^ n! 결과 값이 매우 빠르게 상승합니다. 참고 : 이것은 OEIS의 항목 A046882 입니다. 또한 관련 hyperfactorials, 여전히 매우 큰,하지만 조금 작은 순서는 다음과 같습니다 A002109 당신의 작업 당신의 …

30
계승 숫자 합
문제는 숫자 계승의 자릿수를 계산하는 것입니다. 예 Input: 10 Output: 27 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800, 그리고 숫자 10의 숫자의 합! 3 + 6 + 2 + 8 + 8 + 0 + 0 = 27입니다 입력은 0보다 큰 정수일 …


28
n의 0이 아닌 마지막 자리수!
입력으로 1 ≤ N ≤ 1,000,000 의 정수가 주어지면, 0이 아닌 마지막 N을 출력하십시오 ! 어디 ! 계승입니다 ( 1 에서 N 까지의 모든 숫자의 곱 ). OEIS 시퀀스 A008904 입니다. 유효한 입력을 위해서는 합리적인 기계에서 10 초 이내에 프로그램을 완료해야합니다. 테스트 사례 1 => 1 2 => 2 3 …

27
* 통역사 작성
작업은 간단합니다. 언어에 대한 통역사를 작성하십시오 * . 다음은 위키에 대한 더 큰 링크입니다. 유효한 * 프로그램은 세 가지뿐입니다. * "Hello World"인쇄 * 0과 2,147,483,647 사이의 난수를 인쇄합니다 *+* 영원히 실행됩니다. 세 번째 경우는 이 질문 의 사양에 따라 무한 루프 여야합니다 입력: 입력은 표준 I / O 규칙에 따라 …
20 code-golf  interpreter  code-golf  array-manipulation  sorting  code-golf  halting-problem  code-golf  javascript  code-golf  algorithm  code-golf  arithmetic  code-golf  math  counting  code-golf  math  code-golf  decision-problem  radiation-hardening  code-golf  conversion  bitwise  code-golf  number  decision-problem  code-golf  string  decision-problem  code-golf  random  game  code-golf  ascii-art  graphical-output  code-golf  decision-problem  binary-tree  tree-traversal  code-challenge  array-manipulation  code-challenge  graphical-output  path-finding  test-battery  algorithm  code-golf  integer  factorial  code-golf  binary-tree  code-golf  grid  graph-theory  code-golf  regular-expression  quine  code-golf  encoding  code-golf  king-of-the-hill  javascript 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.