摘要:
阶乘因式分解(一)时间限制:3000 ms | 内存限制:65535 KB难度:2描述给定两个数m,n,其中m是一个素数。将n(0using namespace std;int f(int n, int m){ return n > t; while (t--) { int n, m; ci... 阅读全文
摘要:
Greedy Gift GiversA group of NP (2 ≤ NP ≤ 10) uniquely named friends hasdecided to exchange gifts of money. Each of these friends might ormight not gi... 阅读全文
摘要:
Your Ride Is HereIt is a well-known fact that behind every good comet is a UFO. TheseUFOs often come to collect loyal supporters from here on Earth.Un... 阅读全文
摘要:
01-复杂度2 Maximum Subsequence Sum (25分)Given a sequence of K integers { N1,N2, ..., NK }. A continuous subsequence is defined to be { Ni,N... 阅读全文
摘要:
1017. A除以B (20)时间限制 100 ms内存限制 65536 kB代码长度限制 8000 B判题程序 Standard 作者 CHEN, Yue本题要求计算A/B,其中A是不超过1000位的正整数,B是1位正整数。你需要输出商数Q和余数R,使得A = B * Q + R成立。输入格式:输... 阅读全文
摘要:
1016. 部分A+B (15)时间限制 100 ms内存限制 65536 kB代码长度限制 8000 B判题程序 Standard 作者 CHEN, Yue正整数A的“DA(为1位整数)部分”定义为由A中所有DA组成的新整数PA。例如:给定A = 3862767,DA = 6,则A的“6部分”PA... 阅读全文
摘要:
1023. 组个最小数 (20)时间限制 100 ms内存限制 65536 kB代码长度限制 8000 B判题程序 Standard 作者 CAO, Peng给定数字0-9各若干个。你可以以任意顺序排列这些数字,但必须全部使用。目标是使得最后得到的数尽可能小(注意0不能做首位)。例如:给定两个0,两... 阅读全文
摘要:
习题2-10 排列(permutation)用1,2,3,…,9组成3个三位数 abc, def, 和ghi,每个数字恰好使用一次,要求 abc:def:ghi = 1:2:3。输出所有解。提示:不必太动脑筋。解题思路:首先abc最小值只能为123,最大值329,才符合题意。此题重点判断1—9中每... 阅读全文
摘要:
1021. 个位数统计 (15)时间限制 100 ms内存限制 65536 kB代码长度限制 8000 B判题程序 Standard 作者 CHEN, Yue给定一个k位整数N = dk-1*10k-1 + ... + d1*101 + d0 (00),请编写程序统计每种不同的个位数字出现的次数。例... 阅读全文
摘要:
四方定理Time Limit:1000MS Memory Limit:65536KTotal Submit:28 Accepted:11Description数论中著名的“四方定理”讲的是:所有自然数至多只要用四个数的平方和就可以表示。Input输入包含多行数据每行输入一个n,(1int main... 阅读全文