Foj 1605 Enjoy celebration

来源:互联网 发布:利达128eii主机编程 编辑:程序博客网 时间:2024/04/28 17:42

Accept: 176    Submit: 459
Time Limit: 1000 mSec    Memory Limit : 32768 KB

 Problem Description

Fuzhou University is the national 211 Project focused on building universities, founded in 1958, has become one one of the Fujian Provincial key university which is mainly Polytechnic combination of science, engineering, economic and management, literature, law, arts and other multidisciplinary coordinated development. This year's October 25 is the 50th anniversary celebration of the school. Now, your task is to help the group of teachers who are busy preparing for the celebration calculate the left time to the nearest celebration.

 Input

The first line is a positive number N (N <= 2000), N indicates the number of test data. The following N lines, each line has three positive integer, Y, M, D that were year, month, day time respectively, the three integers are separated by a space, we guarantee the date is legitimate(1958<= Y <= 3000).

 Output

 

According to input data, you must calculate the left time to the nearest celebration. If the most recent session celebration is N, the left time to the nearest celebration is M, so we must output:
“M days left for celebrating the Nth anniversary of the founding of Fuzhou University!” (quotes for clarity only).

 

 Sample Input

3
2008 10 24
2008 10 25
2008 10 26

 Sample Output

1 days left for celebrating the 50th anniversary of the founding of Fuzhou University!
0 days left for celebrating the 50th anniversary of the founding of Fuzhou University!
364 days left for celebrating the 51th anniversary of the founding of Fuzhou University!
题目的意思就是对于一个给定的年份,
求它离最近的校庆还有多少天, 并计算出是第几周年校庆...
//郁闷啊, 竟然把求闰年的公式记错, 写成 ,wa了好几次!!!
原创粉丝点击