程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> ZOJ 3326 An Awful Problem

ZOJ 3326 An Awful Problem

編輯:C++入門知識

ZOJ 3326 An Awful Problem


An Awful Problem

Time Limit: 1 Second Memory Limit: 32768 KB

In order to encourage Hiqivenfin to study math, his mother gave him a sweet candy when the day of the month was a prime number. Hiqivenfin was happy with that. But several days later, his mother modified the rule so that he could get a candy only when the day of the month was a prime number and the month was also a prime number. He felt a bit upset because he could get fewer candies. What's worse, his mother changed the rule again and he had to answer a question before he could get a candy in those days. The question was that how many candies he could get in the given time interval. Hiqivenfin wanted to cry and asked you for help. He promised to give you half of a candy if you could help him to solve this problem.

Input

There are multiple test cases. The first line of input is an integer T (0 < T <= 50), indicating the number of test cases. Then T test cases follow. The i-th line of the next T lines contains two dates, the day interval of the question. The format of the date is "yyyy mm dd". You can assume both dates are valid. Hiqivenfin was born at 1000-01-01 and would not die after 2999-12-31, so the queries are all in this interval.

Hiqivenfin didn't seem to be an earthman, but the calendar was the same as that we usually use. That is to say, you need to identify leap years, where February has 29 days. In the Gregorian calendar, leap years occur in years exactly divisible by four. So, 1993, 1994, and 1995 are not leap years, while 1992 and 1996 are leap years. Additionally, the years ending with 00 are leap years only if they are divisible by 400. So, 1700, 1800, 1900, 2100, and 2200 are not leap years, while 1600, 2000, and 2400 are leap years.

Output

Output the number of candies Hiqivenfin could get in the time interval. Both sides of the interval are inclusive.

Sample Input

 

2
1000 01 01 1000 01 31
2000 02 01 2000 03 01

 

 

 

Sample Output

 

0
10

 

 

 

這個題 是昨天省賽訓練的水題 ,當時沒想到那麼麻煩還有那麼多細節,直接啪啪啪扯了兩百多行,太糾結了 ,越做越麻煩,改成調用函數也晚了,今天拿出來題冊

搜到這個題目 ,用函數再來一遍確實思路和調試難易程度明顯提升。不過中間還是出現了好多不順暢的地方,傻到竟然把9當成素數了。感覺寫的技巧性還行~,其實lastyear 和firstyear這兩個函數體內還可以再減化,唉,畢竟該睡覺了!太晚了。

#include
using namespace std;
bool  leapyear(int x)
{
    if(x%4==0&&x%100!=0||(x%400==0))
        return 1
               ;
    return 0;
}

bool prime(int y)
{
    if(y==2)
        return 1;
    int i;
    for( i=2; i>t;
    while(t--)
    {
        num=0;
        cin>>ys>>ms>>ds>>ye>>me>>de;
        if(ys==ye)
        {
            int num1=lastyear(ye,me,de);
            int num2=lastyear(ys,ms,ds);
            num=num1-num2;
            if(prime(ms)&&prime(ds)&&prime(me)&&prime(de))
            cout<

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved