//输入年月日,判断是该年的第几天,还可以进一步判断从1年开始的第几天
#include
using namespace std;
int main()
{
int Day(int x,int y,int r);
int Calculate_1(int x,int y,int r);
int Calculate_2(int n);
int n,y,r;/**************...
分类:
其他好文 时间:
2014-07-22 22:48:55
阅读次数:
258
Prime Ring ProblemTime Limit: 4000/2000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 25700Accepted Submission(s): 114...
分类:
其他好文 时间:
2014-07-19 22:23:15
阅读次数:
211
Problem Description
Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence is 6 + (-1) + 5...
分类:
其他好文 时间:
2014-07-19 08:25:40
阅读次数:
224
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 const int maxn = 1e6; 8 bitset prime; 9 10 void init()11 {12 int ...
分类:
其他好文 时间:
2014-07-18 13:31:49
阅读次数:
261
题目链接:点击打开链接
题意:
一个游戏由3个人轮流玩
每局游戏由其中一名玩家选择一个数字作为开始
目的:获得最小的得分
对于当前玩家 O ,面对 u 这个数字
则他的操作有:
1、 计分 u +1 ,然后 u++;
2、计分 u / x, 然后 u /= x; 其中x为u的因子且x为素数
然后下一个玩家继续上述操作
3个人各操作一次 为1轮
当一轮结束后,若u==1 则游戏...
分类:
其他好文 时间:
2014-07-18 13:28:50
阅读次数:
200
BFS,最好先打个质数表。 1 #include 2 #include 3 #include 4 #include 5 //#include 6 const int maxn=15000+5; 7 int s[10]; 8 int vis[maxn],isp[maxn]; 9 us...
分类:
其他好文 时间:
2014-07-18 09:29:37
阅读次数:
231
Double HappinessOn the math lesson a teacher asked each pupil to come up with his own lucky numbers. As a fan of number theory Peter chose prime numbe...
分类:
移动开发 时间:
2014-07-18 00:12:12
阅读次数:
616
定时器Constant Throughput Timer (常数吞吐量定时器)参数介绍:Target throughput(in samples per minute):目标吞吐量。注意这里是每分钟发送的请求数Calculate Throughput based on :有5个选项,分别是:This...
分类:
其他好文 时间:
2014-07-17 23:24:06
阅读次数:
269
Summation of Four Primes
Input: standard input
Output: standard output
Time Limit: 4 seconds
Euler proved in one of his classic theorems that prime numbers are infinite in number. But can every nu...
分类:
其他好文 时间:
2014-07-17 21:05:16
阅读次数:
299
??
Sum of Consecutive Prime Numbers
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 18782
Accepted: 10308
Description
Some positive integers can be represen...
分类:
其他好文 时间:
2014-07-17 19:15:16
阅读次数:
260