首页 > 试题广场 >

Sum of Factorials

[编程题]Sum of Factorials
  • 热度指数:6125 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
    John von Neumann, b. Dec. 28, 1903, d. Feb. 8, 1957, was a Hungarian-American mathematician who made important contributions to the foundations of mathematics, logic, quantum physics, meteorology, science, computers, and game theory. He was noted for a phenomenal memory and the speed with which he absorbed ideas and solved problems. In 1925 he received a B.S. diploma in chemical engineering from Zurich Institute and in 1926 a Ph.D. in mathematics from the University of Budapest, His Ph.D. dissertation on set theory was an important contributions to the subject.     At the age of 20, von Neumann proposed a new definition of ordinal numbers that was universally adopted. While still in his twenties, he made many contributions in both pure and applied mathematics that established him as a mathematician of unusual depth. His Mathematical Foundation of Quantum Mechanics (1932) built a solid framework for the new scientific discipline.     During this time he also proved the mini-max theorem of GAME THEORY. He gradually expanded his work in game theory, and with coauthor Oskar Morgenstern he wrote Theory of Games and Economic Behavior (1944).     There are some numbers which can be expressed by the sum of factorials. For example 9, 9 = 1! + 2! + 3! . Dr. von Neumann was very interested in such numbers. So, he gives you a number n, and wants you to tell whether or not the number can be expressed by the sum of some factorials. Well, it is just a piece of case. For a given n, you will check if there are some xi, and let n equal to Σt (上标) i=1(下标) xi! (t≥1, xi≥0, xi = xj <==> i = j)            t      即 Σ  xi! (t≥1, xi≥0, xi = xj <==> i = j)           i=1     If the answer is yes, say "YES"; otherwise, print out "NO".

输入描述:
    You will get a non-negative integer n (n≤1,000,000) from input file.


输出描述:
    For the n in the input file, you should print exactly one word ("YES" or "NO") in a single line. No extra spaces are allowed.
示例1

输入

9
2

输出

YES
YES
头像 小徐小徐啊啊
发表于 2024-03-15 15:04:44
#include <stdio.h> int main() { int n; int a[20]; a[0]=1; for(int i=1;i<11;i++) { a[i]=a[i-1]*i; } while(scanf("%d&quo 展开全文
头像 在考古的小鱼干很有气魄
发表于 2023-03-09 12:18:34
#include <bits/stdc++.h> #define MAX 1000 using namespace std; int main(){ int dp[MAX];//vector<int> int n,i; dp[0] = 1; for(i = 1; i 展开全文
头像 牛客440904392号
发表于 2024-09-30 16:17:20
import java.util.Scanner; public class Main { public static void main(String[] args) { int[] factorials = new int[10]; factorials[ 展开全文
头像 爱喝零度可乐
发表于 2023-03-20 10:17:43
#include<cstdio> int main() { int n; int arr[10]; arr[0] = 1; for (int i = 1 ; i <= 10 ; ++i) { arr[i] = arr[i - 1] 展开全文
头像 Ooops!
发表于 2023-09-13 18:13:08
#include<bits/stdc++.h> using namespace std; int jie(int x){ int n=x; if(x==0) return 1; while(n>1){ n--; x=x*n; 展开全文
头像 chong_0428
发表于 2025-03-04 17:31:44
def mul(a): s = 1 if a == 0 or a == 1: return 1 for i in range(1,a+1): s *= i return s def fac_s(sum, target, i): 展开全文
头像 粉詹眉
发表于 2024-02-23 23:54:56
#include <iostream> #include <vector> #include <map> using namespace std; vector<int> num; map<int, bool> m; //存储0!~9!能 展开全文
头像 牛客7777779号
发表于 2023-03-16 15:18:06
#include <iostream> using namespace std; int main(){ int n,a[11]; //数组存n! a[0] = 1; for (int i =1; i <= 10; i++){//计算n! a[i] = a[i-1]*i; 展开全文
头像 nzxkc
发表于 2022-02-12 16:36:28
#include<iostream> #include<algorithm> #include<unordered_set> using namespace std; int fac[10];//由于n<=1e6,故分解出的f 展开全文
头像 KimKitsuragi
发表于 2024-03-05 11:48:52
分别使用暴力方法、dfs搜索可能的阶乘之和 #include <iostream> using namespace std; // 0~9的阶乘之和为 409,114,而 0~10阶乘之和为 4,037,914 void getFac(int *fac){ // 首先计算 0~9 阶乘 展开全文